-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
60 lines (60 loc) · 1.31 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
{
"scripts": {
"build": "webpack -p",
"start": "webpack-dev-server",
"pretest": "yarn lint && tsc --project .",
"test": "jest",
"lint": "eslint src --ext .ts --cache",
"deploy": "yarn build && gh-pages -d dist"
},
"dependencies": {
"awesome-typescript-loader": "^5.1.0",
"clean-webpack-plugin": "3.0.0",
"gh-pages": "2.1.1",
"html-webpack-plugin": "^3.2.0",
"phaser": "3.10.1"
},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/node": "12.7.5",
"@typescript-eslint/eslint-plugin": "2.2.0",
"@typescript-eslint/parser": "2.2.0",
"babel-core": "^6.26.3",
"babel-jest": "24.9.0",
"copy-webpack-plugin": "5.0.4",
"eslint": "6.3.0",
"husky": "3.0.5",
"jest": "24.9.0",
"prettier": "1.18.2",
"source-map-loader": "^0.2.3",
"ts-jest": "24.0.2",
"typescript": "3.6.3",
"webpack": "4.39.3",
"webpack-cli": "3.3.8",
"webpack-dev-server": "3.8.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"json",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.ts"
]
},
"husky": {
"hooks": {
"pre-push": "yarn test"
}
}
}