-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "algo-game",
"version": "1.0.0",
"description": "Recreation of the japanese game called Algo Basic as a webapp.",
"main": "index.js",
"scripts": {
"build": "npx webpack",
"start": "node server.js",
"format": "npx prettier --write .",
"check-format": "npx prettier --check .",
"dev": "concurrently --kill-others \"npm run devstart\" \"npm run sass-dev\"",
"devstart": "nodemon server.js",
"sass-dev": "sass --watch ./public/dev/scss/styles.scss ./public/dev/css/styles.css"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"helmet": "^8.0.0",
"permissions-policy": "^0.6.0",
"socket.io": "^4.7.2"
},
"devDependencies": {
"browserify": "^17.0.0",
"concurrently": "^8.2.2",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^3.0.1",
"prettier": "3.1.1",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}