-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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-users-crud-demo",
"homepage": "https://jellydn.github.io/react-users-crud-demo",
"version": "0.1.0",
"private": true,
"dependencies": {
"faker": "^4.1.0",
"gh-pages": "^1.0.0",
"loglevel": "^1.4.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-scripts": "1.0.11",
"react-snapshot": "^2.0.0-1",
"rebass": "1.0.7",
"styled-components": "^2.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && react-snapshot",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"@storybook/react": "^3.2.5",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.2.1",
"husky": "6.0.0",
"lint-staged": "^4.0.3",
"prettier": "^1.5.3"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
}
}