-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
37 lines (37 loc) · 929 Bytes
/
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
{
"name": "nier",
"version": "1.0.0",
"description": "Hacking game from Nier: Automata",
"main": "index.js",
"scripts": {
"build": "rollup -c \"config/rollup/config.js\"",
"dev": "concurrently \"rollup -c \"config/rollup/config.js\" -w\" \"serve\"",
"lint": "eslint src --ext .js",
"start": "npm run dev"
},
"eslintConfig": {
"extends": "mdcs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mugen87/nier.git"
},
"author": "Mugen87",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mugen87/nier/issues"
},
"homepage": "https://github.com/Mugen87/nier#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.1.0",
"concurrently": "^5.3.0",
"eslint": "^7.18.0",
"eslint-config-mdcs": "^4.2.3",
"rollup": "^2.37.0",
"serve": "^11.3.2"
},
"dependencies": {
"three": "0.124.0",
"yuka": "0.7.0"
}
}