-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.43 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
{
"scripts": {
"webpack": "webpack -d",
"dev": "nodemon -e css,js,jsx,ejs,cjs,ts,json,mjs script.js",
"webpack-production": "NODE_ENV=production webpack -p",
"babel-production": "NODE_ENV=production COMPILER_ENV=server babel --out-dir dist --config-file ./.babelrc.server.json src",
"start": "node dist/server.js",
"build": "npm run webpack-production && npm run babel-production"
},
"author": "smoketrees",
"license": "MIT",
"nodemonConfig": {
"ignore": [
"src/static/**/*"
]
},
"homepage": "https://github.com/smoke-trees/forum#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-file-loader": "^2.0.0",
"babel-plugin-transform-require-ignore": "^0.1.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"nodemon": "^2.0.2",
"raw-loader": "^4.0.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"compression": "^1.7.4",
"ejs": "^3.0.1",
"express": "^4.17.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}