-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "shooter",
"version": "0.0.0",
"description": "Simple top-down shooter",
"main": "index.js",
"author": "Artur Kot",
"license": "MIT",
"dependencies": {
"@types/howler": "^2.0.0",
"@types/three": "^0.84.28",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"howler": "^2.0.1",
"jest": "^18.1.0",
"lodash": "^4.17.2",
"prettier": "^1.7.0",
"ts-loader": "^1.3.3",
"tslint": "^4.3.1",
"tslint-config-prettier": "^1.5.0",
"tslint-plugin-prettier": "^1.2.0",
"typescript": "^2.1.6",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"scripts": {
"start": "webpack-dev-server --progress --colors --host 0.0.0.0",
"build": "webpack --colors -p",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts?$",
"setupTestFrameworkScriptFile": "./__mocks__/localStorage.js"
},
"volta": {
"node": "10.19.0",
"yarn": "1.21.1"
}
}