-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "antiphon",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"express": "^4.15.2",
"flow-bin": "^0.44.2",
"husky": "^0.13.3",
"lint-staged": "^3.4.0",
"lodash": "^4.17.4",
"minireset.css": "^0.0.3",
"mz": "^2.6.0",
"nodemon": "^1.11.0",
"prettier": "^1.2.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-intl": "^2.2.3",
"react-router-dom": "^4.1.1",
"supertest": "^3.0.0"
},
"devDependencies": {
"react-scripts": "^0.10.0-alpha"
},
"scripts": {
"dev": "yarn start & yarn server",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"coverage": "react-scripts test --coverage --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"flow": "flow",
"server": "nodemon src/server --exec babel-node --presets flow,es2015,stage-2",
"prettier": "prettier --write --no-semi 'src/**/*.js'"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write --no-semi",
"git add"
]
}
}