-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 931 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 931 Bytes
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
{
"name": "berkl.io",
"version": "1.0.0",
"description": "",
"main": "src/client/index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"develop": "cross-env NODE_ENV=development nodemon src/client/index.js",
"start": "cross-env NODE_ENV=production nodemon src/client/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Cindy Liu, Joon Park, Megan Yu",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"mini-css-extract-plugin": "^2.4.3",
"nodemon": "^2.0.14",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"html-webpack-plugin": "^5.4.0",
"webpack": "^5.59.1"
}
}