-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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
{
"name": "bookme-rc",
"version": "0.1.0",
"private": true,
"dependencies": {
"apollo-boost": "^0.1.14",
"apollo-link-context": "^1.0.8",
"feature-toggle": "^0.3.1",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.2",
"react": "^16.4.2",
"react-apollo": "^2.1.11",
"react-app-rewire-hot-loader": "^1.0.1",
"react-app-rewired": "^1.5.2",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.3.4",
"react-qr-reader": "^2.1.0",
"react-router-dom": "^4.3.1",
"react-router-page-transition": "^3.1.0",
"react-scripts": "1.1.4",
"react-transition-group": "^1.2.1",
"styled-components": "^3.4.5",
"subscriptions-transport-ws": "^0.9.14",
"winston": "^3.0.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"start-js": "react-app-rewired start",
"start": "npm-run-all -p watch-css start-js",
"storybook": "start-storybook -p 9001 -c .storybook",
"build-js": "react-app-rewired build",
"build": "npm-run-all build-css build-js",
"precommit": "lint-staged",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject"
},
"devDependencies": {
"@storybook/react": "^3.4.10",
"react-app-rewire-babel-loader": "^0.1.1"
}
}