-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "wopr",
"version": "3.0.0",
"description": "Play tic-tac-toe against the WOPR.",
"private": true,
"scripts": {
"build": "npm run clean && npm run webpack",
"clean": "rimraf public",
"dev": "npm run clean && npm run webpack:watch",
"doctoc": "doctoc --notitle --github README.md",
"webpack": "cross-env NODE_ENV=production webpack --config webpack.js",
"webpack:watch": "webpack --config webpack.js --watch"
},
"dependencies": {
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"doctoc": "^2.2.1",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"svelte": "^4.2.8",
"svelte-loader": "^3.1.9",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MediaComem/comem-wopr.git"
},
"author": "Simon Oulevay <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MediaComem/comem-wopr/issues"
},
"homepage": "https://github.com/MediaComem/comem-wopr#readme",
"engines": {
"node": "^22.0.0"
}
}