-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.01 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "pixi-chess-amusenet-task",
"version": "1.0.0",
"description": "chess game template made with typescript boilerplate webpack for pixi.js",
"browserslist": "> 0.25%, not dead",
"scripts": {
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- -w",
"prebuild": "npm run clean",
"clean": "npx rimraf dist",
"build": "npm run type-check && npm run webpack -- --env mode=production",
"start": "npm-run-all --parallel type-check:watch dev",
"dev": "npm run webpack-dev-server -- --env mode=development",
"test": "npx jest",
"code-coverage": "jest --coverage",
"prettier": "npx prettier",
"prettier:format": "npm run prettier -- --write src/**/*.ts",
"prettier:check": "npm run prettier -- -c ./src/**/*.ts",
"lint-check": "npx eslint ./src/**/*.ts",
"code-style-check": "npm run lint-check && npm run prettier:check",
"prepare": "husky install"
},
"author": "t.tsvetanov",
"license": "MIT",
"dependencies": {
"core-js": "^3.26.0",
"pixi-spine": "^3.0.16",
"pixi.js": "^6.5.8",
"regenerator-runtime": "^0.13.10"
},
"devDependencies": {
"@swc/core": "^1.3.11",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@types/offscreencanvas": "^2019.7.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"browserslist": "^4.21.4",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.2.2",
"jest-canvas-mock": "^2.4.0",
"jsdom": "^20.0.1",
"mini-css-extract-plugin": "^2.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"swc-loader": "^0.2.3",
"terser-webpack-plugin": "^5.3.6",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "identity-obj-proxy"
},
"setupFiles": [
"jest-canvas-mock"
]
}
}