-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.02 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
{
"private": true,
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "rimraf build public/_assets && webpack --config tools/webpack-production.config.js --progress --colors --bail",
"lint": "tslint --project .",
"dev": "node tools/dev-server.js",
"start": "node server.js",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.9",
"@types/webpack": "^4.4.17",
"autoprefixer": "^9.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.1",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"http-proxy-middleware": "^0.19.0",
"jest": "^23.5.0",
"koa-connect": "^2.0.1",
"loader-utils": "^1.1.0",
"node-sass": "^4.10.0",
"nodemon": "^1.18.5",
"null-loader": "^0.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.14.2",
"react-hot-loader": "^4.3.12",
"react-proxy-loader": "^0.3.5",
"rimraf": "^2.6.1",
"sass-loader": "^7.1.0",
"source-map-support": "^0.5.9",
"style-loader": "^0.23.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.1.6",
"url-loader": "^1.1.1",
"webpack": "^4.24.0",
"webpack-cli": "^3.0.3",
"webpack-hot-client": "^4.1.1",
"webpack-serve-ssr-helper": "^0.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/runtime": "^7.0.0",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"body-parser": "^1.17.2",
"bootstrap-sass": "^3.3.6",
"classnames": "^2.2.6",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"express": "^4.15.4",
"mini-css-extract-plugin": "^0.4.2",
"prop-types": "^15.6.2",
"raf": "^3.4.1",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"router1": "^0.14.0",
"router1-react": "^0.9.1",
"rx-react-container": "^0.6.2",
"rxjs": "^6.3.1",
"tslib": "^1.9.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"roots": [
"src"
],
"transform": {
"^.+\\.(t|j)sx?$": "babel-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testRegex": "(\\.|/)(test|spec)\\.(jsx?|tsx?)$"
}
}