-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.97 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
{
"name": "ts-react-template",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^1.5.0",
"connected-react-router": "^4.4.1",
"emotion": "^9.2.6",
"emotion-theming": "^9.2.6",
"history": "^4.7.2",
"lodash": "^4.17.10",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-emotion": "^9.2.6",
"react-ink": "^6.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts-ts": "^2.17.0",
"react-tap-event-plugin": "^3.0.2",
"redux": "^4.0.0",
"redux-observable": "^1.0.0",
"reselect": "^3.0.1",
"rxjs": "^6.2.2",
"tinycolor2": "^1.4.1",
"typesafe-actions": "^2.0.4"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"prettify": "prettier --write \"./**/*.tsx\"",
"react-devtools": "react-devtools",
"dev": "concurrently \"npm run react-devtools \" \"npm start\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.10",
"@storybook/addon-info": "^4.0.0-alpha.3",
"@storybook/react": "^4.0.0-alpha.3",
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.108",
"@types/node": "^10.0.2",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"@types/react-redux": "^6.0.5",
"@types/react-router": "^4.0.29",
"@types/react-router-dom": "^4.3.0",
"@types/react-router-redux": "^5.0.15",
"@types/react-tap-event-plugin": "^0.0.30",
"@types/react-test-renderer": "^16.0.2",
"@types/react-transition-group": "^2.0.9",
"@types/redux-devtools": "^3.0.44",
"@types/redux-devtools-dock-monitor": "^1.1.33",
"@types/redux-devtools-log-monitor": "^1.0.34",
"@types/storybook__addon-actions": "^3.4.1",
"@types/storybook__react": "^3.0.9",
"@types/tinycolor2": "^1.4.1",
"@types/webpack": "^4.1.4",
"@types/webpack-env": "^1.13.6",
"awesome-typescript-loader": "^5.2.0",
"babel-plugin-emotion": "^9.2.6",
"concurrently": "^3.5.1",
"cross-env": "^5.1.4",
"husky": "^1.1.4",
"jest": "^23.5.0",
"node-sass-chokidar": "^1.2.2",
"prettier": "^1.12.1",
"react-devtools": "^3.2.1",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-test-renderer": "^16.4.2",
"redux-devtools": "^3.4.1",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"rxjs-tslint-rules": "^4.1.1",
"ts-jest": "22.0.1",
"tslint-config-prettier": "^1.12.0",
"typescript": "^3.0.1"
},
"jest": {
"moduleNameMapper": {
"~(.*)$": "<rootDir>/src/$1"
}
},
"husky": {
"hooks": {
"pre-push": "yarn test --ci"
}
}
}