-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.71 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
{
"name": "my-reduxtagram",
"version": "0.1.0",
"private": true,
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"dependencies": {
"@mars/heroku-js-runtime-env": "^3.0.2",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/history": "^4.7.2",
"@types/jest": "^25.1.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"@types/reach__router": "^1.2.4",
"@types/react": "^16.8.23",
"@types/react-addons-css-transition-group": "^15.0.5",
"@types/react-dom": "^16.8.5",
"@types/react-redux": "^7.1.4",
"@types/react-router": "^4.4.5",
"@types/react-router-dom": "^4.3.4",
"@types/react-router-redux": "^5.0.18",
"@types/redux": "^3.6.0",
"@types/redux-devtools-extension": "^2.13.2",
"autoprefixer": "^9.6.1",
"autoprefixer-stylus": "^0.14.0",
"axios": "^0.19.0",
"css-loader": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"express": "^4.17.1",
"express-favicon": "^2.0.1",
"history": "^4.9.0",
"jest-enzyme": "^7.1.2",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"poststylus": "^1.0.0",
"raven": "^2.3.0",
"raven-js": "^3.27.2",
"react": "^16.8.6",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router": "^4.3.1",
"react-router-dom": "^5.0.1",
"react-router-redux": "next",
"react-scripts": "3.0.1",
"redux": "^4.0.4",
"redux-saga": "^1.0.5",
"redux-thunk": "^2.3.0",
"styl": "^0.2.9",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"typescript": "3.5.3"
},
"scripts": {
"build-css": "stylus -c src/static/stylus/ --out src/static/css",
"watch-css": "npm run build-css && stylus -c -w src/static/stylus/ --out src/static/css",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"test": "react-scripts test --transformIgnorePatterns \"node_modules/(?!ui-core)\" --env=jsdom",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"tsc": "tsc",
"watch:build": "tsc --watch",
"postinstall": "./node_modules/.bin/tsc ./tsconfig.json || echo done",
"prod": "node server.js",
"heroku-postbuild": "npm install && npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"enzyme-to-json": "^3.4.4",
"ts-jest": "^25.2.0"
}
}