forked from ossn/fixme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "fixme",
"version": "0.1.0",
"dependencies": {
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"@types/query-string": "^6.3.0",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"@types/react-helmet": "^5.0.8",
"@types/react-icons": "^3.0.0",
"@types/react-paginate": "^6.2.1",
"@types/react-redux": "^7.1.1",
"@types/react-router-dom": "^4.3.4",
"@types/react-select": "^2.0.19",
"@types/react-sidebar": "^3.0.0",
"@types/reactstrap": "^8.0.1",
"@types/redux-form": "^8.1.4",
"babel-core": "^6.26.0",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.3.1",
"connected-react-router": "^6.5.2",
"history": "^4.9.0",
"isomorphic-fetch": "^2.2.1",
"jest-fetch": "^1.1.1",
"jest-fetch-mock": "^2.1.2",
"ncp": "^2.0.0",
"node-sass-chokidar": "^1.3.5",
"npm-run-all": "^4.1.5",
"popper.js": "^1.15.0",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"query-string": "^6.8.1",
"ra-data-simple-rest": "^2.8.0",
"react": "^16.8.6",
"react-admin": "^2.7.1",
"react-async-component": "^2.0.0",
"react-dom": "^16.8.6",
"react-ga": "^2.6.0",
"react-helmet": "^5.2.1",
"react-icons": "^3.5.0",
"react-markdown": "^4.1.0",
"react-paginate": "^6.3.0",
"react-redux": "^6.0.1",
"react-router-dom": "4",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts-ts": "3.1.0",
"react-select": "^2.4.2",
"react-sidebar": "^3.0.2",
"reactstrap": "^7.1.0",
"redux": "4.0.4",
"redux-form": "^8.2.4",
"redux-thunk": "2.3.0",
"rimraf": "^2.6.3",
"scroll-into-view-if-needed": "^2.2.20",
"smooth-scroll-into-view-if-needed": "^1.1.23",
"styled-components": "^4.3.2",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-sass-guidelines": "^6.0.0",
"stylelint-config-standard": "^18.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typesafe-actions": "^3.2.1",
"typescript": "^3.5.3",
"utility-types": "^3.7.0"
},
"devDependencies": {
"husky": "^3.0.1",
"lint-staged": "^9.2.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.9.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"*.scss": [
"prettier --write",
"stylelint --fix",
"git add"
]
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "yarn build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts-ts start",
"start": "npm-run-all -p watch-css start-js",
"build": "yarn build-css && react-scripts-ts build && ncp build dist",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"deploy": "yarn build",
"postinstall": "node postinstall.js"
},
"proxy": {
"/api": {
"target": "http://localhost:3000"
}
}
}