-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 848 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 848 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
{
"name": "the-gradient-artist",
"version": "1.0.0",
"description": "A browser-based puzzle game that teaches color theory through interactive gameplay",
"main": "dist/app.js",
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"deploy": "npm run build && gh-pages -d dist",
"serve": "http-server dist"
},
"author": "Naval Saini",
"license": "ISC",
"dependencies": {
"gh-pages": "^6.3.0"
},
"devDependencies": {
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.9.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.14",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}