-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "instagram-clone",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"classnames": "^2.2.6",
"cross-env": "^5.1.6",
"npm-run-all": "^4.1.3",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-scripts": "1.1.4",
"styled-components": "^3.3.0"
},
"scripts": {
"start:server": "json-server src/db/index.js --port 3001",
"start:ui": "react-scripts start",
"start":
"cross-env NODE_PATH=src npm-run-all --parallel start:ui start:server",
"build": "cross-env react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"eslint": "eslint src"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-react": "^7.8.2",
"faker": "^4.1.0",
"husky": "^0.14.3",
"json-server": "^0.14.0",
"lint-staged": "^7.1.2",
"prettier": "1.12.1"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
}
}