-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.4 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
{
"dependencies": {
"@pixi/filter-outline": "^5.2.0",
"@tsxper/crc32": "^2.1.3",
"pixi-viewport": "^6.0.3",
"pixi.js": "^8.6.6"
},
"name": "netsim",
"version": "1.0.0",
"private": true,
"devDependencies": {
"@eslint/js": "9.18.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"css-loader": "7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.14.0",
"html-webpack-plugin": "^5.6.0",
"inline-source-map": "0.6.3",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"npm": "^11.0.0",
"prettier": "^3.3.3",
"style-loader": "4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "9.5.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.13.0",
"webpack": "5.94.0",
"webpack-cli": "6.0.1",
"webpack-dev-server": "^5.2.0"
},
"scripts": {
"test": "jest",
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"format": "prettier . --write",
"lint": "prettier . --check && eslint src/"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"jest": {
"transform": {
".(ts|tsx)$": "ts-jest"
},
"testRegex": "/test/.*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"moduleNameMapper": {
"app/(.*)": "<rootDir>/src/$1"
}
}
}