-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.07 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.07 KB
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
88
89
90
91
92
93
94
95
96
{
"name": "mage-engine",
"version": "3.25.6",
"description": "A WebGL Javascript Game Engine, built on top of THREE.js and many other libraries.",
"main": "dist/mage.js",
"author": {
"name": "Marco Stagni",
"email": "marco@mage.studio"
},
"scripts": {
"preversion": "npm test",
"version": "npm run build",
"dev": "concurrently 'npm:build:live' 'npm:start'",
"start": "http-server ./ -p 8085",
"postversion:push": "git push --no-verify && git push --tags --no-verify",
"postversion": "npm run postversion:push && npm publish",
"prebuild": "rimraf dist/mage.js",
"build": "rollup --config config/index.js",
"build:live": "rollup --config config/index.js --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "git://github.com/MageStudio/Mage.git"
},
"license": "BSD-3-Clause",
"keywords": [
"mage",
"marco",
"stagni",
"three.js",
"webgl",
"game",
"engine",
"game engine",
"javascript",
"browser",
"shader"
],
"dependencies": {
"@babel/plugin-transform-classes": "^7.9.5",
"@babel/plugin-transform-runtime": "7.5.0",
"@babel/runtime": "7.5.0",
"between.js": "0.1.2-fix.2",
"hotkeys-js": "^3.13.7",
"html-to-image": "^1.9.0",
"html2canvas": "^1.4.1",
"inferno": "7.3.2",
"inferno-create-element": "7.3.3",
"inferno-redux": "7.4.2",
"redux": "4.0.5",
"redux-thunk": "^2.3.0",
"rxjs": "6.5.3",
"three": "0.126.0",
"three.proton": "npm:three.proton.js@0.2.3",
"vivifyjs": "*",
"whatwg-fetch": "3.0.0",
"xstate": "^4.8.0"
},
"devDependencies": {
"@babel/cli": "7.17.3",
"@babel/core": "^7.29.0",
"@babel/node": "7.16.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "^7.29.0",
"@babel/register": "7.17.0",
"@eslint/js": "^9.39.3",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "21.0.2",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-replace": "^2.3.4",
"babel-jest": "^29.7.0",
"babel-loader": "8.2.3",
"babel-plugin-inferno": "6.3.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"concurrently": "^5.3.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"http-server": "^0.12.3",
"jest": "^29.7.0",
"madge": "^5.0.1",
"prettier": "^3.8.1",
"rimraf": "^3.0.0",
"rollup": "2.69.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-web-worker-loader": "1.6.1"
}
}