-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "snake_game",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.mjs",
"test": "node test.js",
"build": "webpack --config webpack.prod.js",
"watch": "webpack --watch --config webpack.config.js"
},
"keywords": [],
"author": "dongkun",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"sequelize-cli": "^6.4.1",
"style-loader": "^3.3.1"
},
"dependencies": {
"axios": "^0.27.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"html-webpack-plugin": "^5.5.0",
"jssha": "^3.2.0",
"method-override": "^3.0.0",
"node-sass": "^7.0.1",
"pg": "^8.7.3",
"sass-loader": "^13.0.0",
"sequelize": "^6.20.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0",
"mini-css-extract-plugin": "^2.6.1"
}
}