-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.66 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
{
"name": "mini-twitch",
"version": "1.0.0",
"description": "Mini Twitch project using Twitch API",
"private": true,
"scripts": {
"clean": "rm -rf dist/*",
"prebuild": "npm run clean",
"build": "NODE_ENV=production webpack",
"start": "NODE_ENV=production node ./bin/www",
"start:prod": "NODE_ENV=production node ./bin/www",
"start:no-hmr": "NO_HMR=1 node ./bin/www",
"dev_comment": "do not remove node env in dev",
"dev": "NODE_ENV=development node ./bin/www"
},
"author": "Lance/texas2010",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.6.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "^4.17.1",
"express-webpack-assets": "^0.1.0",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"node-fetch": "^2.6.1",
"pug": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"assets-webpack-plugin": "^7.0.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"chokidar": "^3.5.1",
"css-loader": "^5.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"http-proxy": "^1.18.1",
"mini-css-extract-plugin": "^1.3.9",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}