-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "digitalbacon",
"version": "0.3.11",
"type": "module",
"description": "Content management system for 3D websites",
"main": "/build/DigitalBacon.min.js",
"license": "MPL 2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kalegd/DigitalBacon.git"
},
"bugs": "https://github.com/kalegd/DigitalBacon/issues",
"homepage": "https://digitalbacon.io",
"keywords": [
"webxr",
"threejs",
"3d website",
"cool"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"lint": "eslint ./scripts/core --ext .js",
"lint-fix": "eslint ./scripts/core --ext .js --fix",
"start": "http-server -c-1 -p 8000",
"start-ssl": "http-server -S -c cert.pem -c-1 -p 8000",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"digitalbacon-ui": "^0.2.1",
"file-saver": "2.0.5",
"jest-environment-jsdom": "^29.7.0",
"jszip": "3.10.1",
"jszip-utils": "0.1.0",
"three": "^0.171.0"
},
"devDependencies": {
"@rollup/plugin-replace": "6.0.1",
"@rollup/plugin-terser": "^0.3.0",
"eslint": "^8.55.0",
"http-server": "14.1.0",
"jest": "^29.7.0",
"mime": "3.0.0",
"rollup": "^3.9.1",
"rollup-plugin-root-import": "^1.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"/scripts/(.*)": "<rootDir>/scripts/$1",
"/node_modules/(.*)": "<rootDir>/node_modules/$1"
}
}
}