forked from alvov/the-monsters-vault-game
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 976 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 976 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
30
31
32
33
{
"name": "no-forwarding-address-game",
"version": "1.6.0",
"description": "3d game made with CSS 3d transforms",
"author": "alvov",
"devDependencies": {
"babel-register": "latest",
"faucet": "^0.0.4",
"http-server": "^14.1.0",
"tape": "latest"
},
"dependencies": {
"@babel/core": "^7.0.0",
"babel-loader": "latest",
"css-loader": "latest",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "latest",
"react": "latest",
"react-dom": "latest",
"react-redux": "latest",
"redux": "latest",
"redux-batched-actions": "latest",
"style-loader": "latest",
"webpack": "^5.66.0"
},
"scripts": {
"start": "http-server -a 127.0.0.1",
"watch": "webpack --watch",
"build-assets-list": "node tools/buildAssetsList.js",
"test:debug": "BABEL_DISABLE_CACHE=1 node debug tests/collision.js",
"test": "BABEL_DISABLE_CACHE=1 node tests/collision.js | node_modules/faucet/bin/cmd.js"
}
}