-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
94 lines (94 loc) · 3.06 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
88
89
90
91
92
93
94
{
"name": "mrjs",
"version": "0.6.4",
"type": "module",
"description": "an MR first webXR framework",
"engines": {
"node": ">=20.0.0",
"npm": ">=6.14.4"
},
"main": "dist/mr.js",
"homepage": "https://mrjs.io",
"scripts": {
"build": "npx webpack --config webpack.config.js",
"update-submodules": "./scripts/update-all-submodules.sh",
"server": "npx webpack serve",
"test-server": "NODE_ENV=testing npx webpack serve",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"test-serially": "NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand",
"test-randomized": "NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand --random",
"clear-testing-cache": "npx jest --clearCache",
"docs": "./scripts/create-docs.sh",
"prettier-check": "prettier --check \"src/**/*.js\" \"*.js\"",
"prettier-fix": "prettier --write \"src/**/*.js\" \"*.js\"",
"lint-check": "eslint \"src/**/*.js\" \"*.js\" --ignore-pattern \"src/extras/**\" --max-warnings 0",
"lint-fix": "eslint \"src/**/*.js\" \"*.js\" --ignore-pattern \"src/extras/**\" --fix",
"format": "npm run prettier-fix && npm run lint-fix",
"check-format": "npm run prettier-check && npm run lint-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Volumetrics-io/mrjs.git"
},
"author": "Volumetrics",
"license": "MIT",
"bugs": {
"url": "https://github.com/Volumetrics-io/mrjs/issues"
},
"engines": {
"node": "^18.17.0 || >=20.5.0"
},
"testMatch": [
"**/__tests__/**/*.test.mjs"
],
"testEnvironment": "node",
"devDependencies": {
"@babel/core": "^7.23.9",
"babel-jest": "^29.7.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.4",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"esm": "^3.2.25",
"html-webpack-plugin": "^5.6.0",
"install": "^0.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-puppeteer": "^10.0.1",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.1",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^2.8.0",
"npm": "^10.4.0",
"playwright": "^1.41.2",
"puppeteer": "^22.8.0",
"style-loader": "^4.0.0",
"tui-jsdoc-template": "^1.2.2",
"url": "^0.11.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@babel/eslint-parser": "^7.23.10",
"@dimforge/rapier3d": "^0.12.0",
"docdash": "^2.0.2",
"jaguarjs-jsdoc": "^1.1.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.4",
"prettier-eslint-cli": "^8.0.1",
"stats.js": "^0.17.0",
"three": "^0.161.0",
"troika-three-text": "^0.48.1"
}
}