This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.09 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
{
"name": "trainee",
"version": "1.0.0",
"main": "bin/index.js",
"author": "Szabolcs Szőke",
"license": "MIT",
"scripts": {
"watch": "webpack --watch --hide-modules --config webpack.config.dev.babel.js",
"build": "webpack --progress --hide-modules --config webpack.config.prod.babel.js",
"nodemon": "nodemon bin/index.js",
"start": "set PORT=3000 && set PREFIX=foo&& set POSTFIX=bar&& node bin/index.js"
},
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"compression": "^1.7.2",
"express": "^4.16.3",
"multer": "^1.3.0",
"react": "^16.4.0",
"react-dom": "^16.4.1",
"react-dropzone": "^4.2.11",
"react-virtualized": "^9.19.1"
},
"devDependencies": {
"@types/compression": "^0.0.36",
"@types/express": "^4.16.0",
"@types/multer": "^1.3.7",
"@types/node": "^10.3.2",
"@types/react": "^16.3.17",
"@types/react-dom": "^16.0.6",
"@types/react-dropzone": "^4.2.0",
"@types/react-virtualized": "^9.18.3",
"@types/webpack-env": "^1.13.6",
"autoprefixer": "^8.6.2",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"nodemon": "^1.17.5",
"optimize-css-assets-webpack-plugin": "^4.0.2",
"postcss-loader": "^2.1.5",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"ts-loader": "^4.4.1",
"tslint": "^5.10.0",
"typescript": "^2.9.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.4",
"webpack-node-externals": "^1.7.2"
},
"prettier": {
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": false
}
}