-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "grand-theft-duty",
"version": "0.1.4",
"description": "Top down WW2 shooter",
"dependencies": {
"@arjanfrans/mainloop": "^3.0.5",
"@types/node": "^12.20.19",
"@types/three": "^0.84.37",
"as-number": "^1.0.0",
"commander": "^8.1.0",
"glob": "^7.1.7",
"glob-promise": "^4.2.0",
"howler": "^2.0.2",
"inherits": "^2.0.4",
"mustache": "^4.2.0",
"quad-indices": "^2.0.1",
"react-scripts": "^4.0.3",
"three": "^0.84.0",
"ts-node": "^10.2.0",
"typescript": "^3.9.10",
"underscore": "^1.13.1",
"word-wrapper": "^1.0.7",
"xtend": "^4.0.2"
},
"scripts": {
"dev:install-requirements": "./bin/cli install-requirements -s",
"build:spritesheets": "./bin/cli spritesheet assets/images/ public/assets/spritesheets/ -e 2",
"build:audiosprites": "./bin/cli audiosprite assets/audio/ public/assets/audiosprites/ -e ogg",
"start": "react-scripts start",
"start:production": "serve -s build",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "npm run build && gh-pages -d build",
"cs-fix": "eslint src --ext ts,tsx",
"cs-format": "prettier 'src/**/*.ts' --write --tab-width 4",
"cs": "npm run cs-format && npm run cs-fix"
},
"repository": {
"type": "git",
"url": "https://github.com/arjanfrans/grand-theft-duty"
},
"keywords": [
"three.js",
"game",
"grand theft duty",
"top down shooter",
"call of duty",
"grand theft auto"
],
"author": "Arjan Frans <[email protected]>",
"license": "MIT",
"devDependencies": {
"convert-bmfont": "^1.0.2",
"gh-pages": "^3.2.3",
"prettier": "^2.3.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}