-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "re-jok",
"version": "0.2.0",
"main": "core/index.js",
"module": "core/index.js",
"files": [
"core",
"README.md"
],
"author": {
"name": "Tran Ba Thanh Tung",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/tranbathanhtung/re-jok.git"
},
"bugs": {
"url": "https://github.com/tranbathanhtung/re-jok/issues"
},
"homepage": "https://github.com/tranbathanhtung/re-jok",
"keywords": [
"components",
"react",
"react-component",
"ui",
"design-system",
"styled-system",
"styled-components",
"presentational",
"stateless",
"functional",
"library-ui"
],
"dependencies": {
"react-fontawesome": "^1.6.1",
"react-transition-group": "^1.2.1"
},
"peerDependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2",
"styled-components": "^3.2.6"
},
"scripts": {
"flow": "flow",
"analyze": "source-map-explorer build/static/js/main.*",
"start": "react-scripts start",
"build-scripts": "react-scripts build",
"build": "rm -rf core && NODE_ENV=production babel src/lib --out-dir core --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-flow": "^6.23.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"flow-bin": "^0.73.0",
"jest-enzyme": "^6.0.1",
"jest-styled-components": "^5.0.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts": "1.1.4",
"react-test-renderer": "^16.4.0",
"source-map-explorer": "^1.5.0",
"styled-components": "^3.2.6"
}
}