-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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
44
45
46
{
"name": "javascript-snake",
"version": "1.0.0",
"description": "Snake in javascript",
"main": "src/script.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"build:dev": "webpack --mode=development --node-env=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bascioTOja/javascript-snake.git"
},
"keywords": [
"snake"
],
"author": "bascio",
"license": "ISC",
"bugs": {
"url": "https://github.com/bascioTOja/javascript-snake/issues"
},
"homepage": "https://github.com/bascioTOja/javascript-snake#readme",
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.24.0",
"@webpack-cli/generators": "^3.0.7",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"dotenv": "^16.4.5",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.1",
"style-loader": "^3.3.4",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.3"
},
"dependencies": {
"js-confetti": "^0.12.0"
}
}