-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
70 lines (70 loc) · 1.7 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
69
70
{
"name": "Sizzy",
"version": "0.0.2",
"private": true,
"devDependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"custom-react-scripts": "^0.2.2",
"flow-bin": "^0.45.0",
"husky": "^0.13.3",
"jest": "^19.0.2",
"lint-staged": "^3.4.1",
"plop": "^1.7.3",
"prettier": "^1.2.2"
},
"dependencies": {
"director": "^1.2.8",
"font-awesome": "^4.7.0",
"lodash": "^4.17.15",
"mobx": "^3.1.9",
"mobx-react": "^4.1.8",
"normalize.css": "^5.0.0",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.5.2",
"react-body-classname": "^1.1.1",
"react-dom": "^15.4.2",
"react-fontawesome": "^1.6.1",
"react-frame-component": "^1.0.3",
"react-keydown": "^1.7.0",
"react-measure": "^1.4.7",
"styled-components": "1.4.5",
"valid-url": "^1.0.9"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
]
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"transform-decorators-legacy"
]
},
"lint-staged": {
"*.js": [
"prettier --single-quote --bracket-spacing=false --write",
"git add",
"jest -i --findRelatedTests"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"prebuild": "yarn checks",
"test": "jest -i",
"eject": "react-scripts eject",
"flow": "flow",
"prettier-all": "prettier --single-quote --bracket-spacing=false --write 'src/**/*.js'",
"precommit": "lint-staged",
"checks": "yarn flow && yarn test"
}
}