-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "react-service-app",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "if-dotenv NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "concurrently 'react-scripts start' 'nodemon server --exec babel-node'",
"start:prod": "npm run build && node dist",
"build": "npm run build-server && npm run build-client",
"build:client": "react-scripts build",
"build:server": "babel server -d dist",
"test": "react-scripts test --env=jsdom",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"if-dotenv": "^1.0.0",
"mongoose": "^5.0.17",
"react": "^16.3.2",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.3.2",
"react-scripts": "1.1.4",
"winston": "^2.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"concurrently": "^3.5.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"nodemon": "^1.17.4",
"prettier": "^1.12.1"
}
}