-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "motive",
"version": "0.1.0",
"private": true,
"description": "A web-based physics simulator",
"main": "src/index.ts",
"scripts": {
"dev": "webpack serve --config webpack.config.js --mode development",
"build": "webpack --config webpack.config.js --mode production",
"lint": "eslint src",
"test": "jest",
"test-watch": "jest --watchAll",
"test-coverage": "jest --coverage"
},
"author": "NriotHrreion",
"license": "MPL-2.0",
"homepage": ".",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^5.0.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.10.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"file-loader": "^6.2.0",
"globals": "^15.9.0",
"html-webpack-injector": "^1.1.4",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.9.1",
"terser-webpack-plugin": "^5.3.5",
"ts-loader": "^9.3.1",
"typescript-eslint": "^8.5.0",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"jsx-dom": "^8.1.5",
"jsx-dom-cjs": "^8.1.5",
"lucide": "^0.433.0",
"pixi.js": "^8.4.0"
}
}