-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "js_project_skeleton",
"version": "1.0.0",
"description": "skeleton for new JS project",
"main": "index.js",
"browserslist": [
"last 1 version",
"> 1%",
"not dead"
],
"scripts": {
"serve": "NODE_ENV=development webpack serve --config webpack.dev.js ",
"watch": "NODE_ENV=development webpack --watch --config webpack.dev.js ",
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"start": "node app.js",
"heroku-prebuild": "npm install --dev"
},
"author": "mrcjbradley",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/preset-env": "^7.14.4",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"fibers": "^5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^1.6.0",
"postcss-loader": "^5.3.0",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"googleapis": "^75.0.0",
"node-fetch": "^2.6.1",
"nodemailer": "^6.6.1",
"path": "^0.12.7",
"regenerator-runtime": "^0.13.7"
}
}