generated from csb324/codesketchtober
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 998 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 998 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
33
34
35
36
37
{
"name": "codesketchtober",
"version": "1.0.0",
"description": "creative coding challenges for the month of october",
"main": "app.js",
"directories": {
"lib": "lib"
},
"scripts": {
"server": "nodemon app.js",
"build": "webpack --watch --mode=development",
"start": "concurrently \"npm run server\" \"npm run build\"",
"build:prod": "npm run webpack:prod && node build.js",
"webpack:prod": "webpack --config=webpack.prod.js --mode=development",
"init": "node init.js"
},
"author": "csb324",
"license": "ISC",
"dependencies": {
"copyfiles": "^2.4.1",
"dotenv": "^14.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.3",
"handlebars": "^4.7.7",
"handlebars-layouts": "^3.1.4",
"ml5": "^0.7.1",
"p5": "^1.4.0",
"webpack": "^5.52.0"
},
"devDependencies": {
"concurrently": "^6.2.1",
"css-loader": "^6.3.0",
"nodemon": "^2.0.12",
"style-loader": "^3.3.0",
"webpack-cli": "^4.8.0"
}
}