-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 739 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 739 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
{
"name": "snake",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.7.1",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.4",
"mini-css-extract-plugin": "^2.9.4",
"sass": "^1.92.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"scripts": {
"build": "webpack",
"style:watch": "sass --watch src/styles:dist/css",
"serve": "webpack serve",
"dev": "concurrently \"npm run style:watch\" \"npm run serve\""
}
}