This repository was archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.92 KB
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
{
"name": "react-redux-ts",
"version": "0.0.1",
"private": true,
"dependencies": {
"@types/jest": "^20.0.6",
"@types/node": "^8.0.19",
"@types/react": "^15.6.4",
"@types/react-dom": "^15.5.6",
"bootstrap": "4.0.0-beta",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"npm-run-all": "^4.0.2",
"popper.js": "^1.11.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.2",
"react-scripts-ts": "2.7.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"@types/enzyme": "^2.8.4",
"@types/jquery": "^3.2.12",
"@types/react-redux": "^5.0.1",
"@types/react-router-dom": "^4.0.7",
"@types/redux-immutable-state-invariant": "^2.0.0",
"@types/redux-mock-store": "^0.0.10",
"enzyme": "^2.9.1",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"node-sass-chokidar": "^0.0.3",
"nsp": "^2.7.0",
"prettier": "^1.5.3",
"react-test-renderer": "^15.6.1",
"redux-immutable-state-invariant": "^2.0.0",
"redux-mock-store": "^1.2.3",
"stylelint": "^8.0.0",
"stylelint-config-recommended": "^1.0.0",
"tslint-config-prettier": "^1.3.0",
"tslint-immutable": "^4.0.2"
},
"lint-staged": {
"src/**/*.{js,jsx,json,ts,tsx,css,scss}": [
"prettier --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"lint-css": "stylelint src/**/*.scss -f verbose --color",
"build-css": "npm run lint-css && node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"security-check": "nsp check",
"start-ts": "react-scripts-ts start",
"start": "npm-run-all -p watch-css start-ts",
"build": "npm run security-check && npm run build-css && react-scripts-ts build",
"test": "react-scripts-ts test",
"eject": "react-scripts-ts eject"
}
}