forked from ossn/fixme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.9 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
{
"name": "fixme",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.11.0",
"@types/query-string": "^6.1.0",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/react-paginate": "^5.2.1",
"@types/react-redux": "^6.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/react-select": "^2.0.3",
"@types/react-sidebar": "^3.0.0",
"@types/reactstrap": "^6.0.3",
"@types/redux-form": "^7.4.8",
"babel-core": "^6.26.0",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.1.3",
"connected-react-router": "^4.5.0",
"history": "^4.7.2",
"ncp": "^2.0.0",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.2",
"popper.js": "^1.14.4",
"prettier": "^1.14.3",
"prop-types": "^15.6.2",
"query-string": "^6.1.0",
"ra-data-simple-rest": "^2.2.2",
"react": "^16.5.2",
"react-admin": "^2.2.2",
"react-async-component": "^2.0.0",
"react-dom": "^16.5.2",
"react-ga": "^2.5.3",
"react-markdown": "^3.4.1",
"react-paginate": "^5.2.4",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts-ts": "2.17.0",
"react-select": "^2.0.0",
"react-sidebar": "^3.0.2",
"reactstrap": "^6.4.0",
"redux": "4.0.0",
"redux-form": "^7.4.2",
"redux-thunk": "2.3.0",
"rimraf": "^2.6.2",
"scroll-into-view-if-needed": "^2.2.16",
"smooth-scroll-into-view-if-needed": "^1.1.19",
"styled-components": "^3.4.9",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-sass-guidelines": "^5.2.0",
"stylelint-config-standard": "^18.2.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0",
"tslint-react": "^3.6.0",
"typesafe-actions": "^2.0.4",
"typescript": "^3.0.1",
"utility-types": "^2.1.0"
},
"devDependencies": {
"husky": "^1.0.0",
"lint-staged": "^7.3.0",
"stylelint": "^9.5.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.3.1"
},
"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",
"precommit": "lint-staged",
"deploy": "yarn build",
"postinstall": "node postinstall.js"
},
"proxy": {
"/api": {
"target": "http://localhost:3000"
}
}
}