-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
44
{
"name": "quarto",
"version": "1.0.0",
"description": "Pass the piece. Win the game.",
"main": "index.js",
"browserslist": [
"last 1 version",
"> 1%",
"not dead"
],
"engines": {
"node": "18.17.0"
},
"scripts": {
"serve": "NODE_ENV=development webpack serve --config webpack.dev.js ",
"watch": "NODE_ENV=development webpack --watch --config webpack.dev.js ",
"build": "NODE_ENV=production webpack --config webpack.prod.js"
},
"author": "Bradley Trick",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.13.12",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.4.0",
"postcss-loader": "^5.2.0",
"resolve-url-loader": "^3.1.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"dat.gui": "^0.7.7",
"three": "^0.127.0"
}
}