-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "immersive-web-emulator",
"watch": {
"build:devtool": {
"patterns": [
"src"
],
"extensions": "js,jsx,css,html",
"quiet": false
}
},
"scripts": {
"build:devtool": "rollup -c",
"build:polyfill": "cd polyfill && npm run build",
"build": "rimraf dist && npm run build:polyfill && npm run build:devtool",
"lint": "eslint ./src",
"format": "prettier --write ./src/**/*",
"watch": "npm-watch",
"postinstall": "cd polyfill && npm install",
"zip": "npm run build && bestzip iwe-release.zip dist/* icons/* manifest.json LICENSE.md"
},
"pre-commit": [
"lint"
],
"dependencies": {
"bootstrap": "^5.2.3",
"events": "^3.3.0",
"jquery": "^3.6.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "github:felixtrz/three.js#8b0a06e650"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/chrome": "^0.0.235",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"bestzip": "^2.2.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-react": "^7.32.2",
"npm-watch": "^0.11.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.0",
"rimraf": "^4.1.2",
"rollup": "^3.25.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-import-css": "^3.1.0",
"typescript": "^5.0.4"
}
}