-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
{
"name": "zonlicht",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "parcel --target app src/index.html --hmr-port 12345",
"build": "parcel build --target app --no-source-maps --public-url . src/index.html",
"test": "parcel build --target test src/test/**/*.test.ts && ava --no-worker-threads dist-test"
},
"author": "",
"license": "ISC",
"dependencies": {
"@popperjs/core": "^2.11.8",
"@types/mathjs": "^9.4.2",
"@types/three": "^0.167.1",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"cross-fetch": "^4.0.0",
"d3-polygon": "^3.0.1",
"file-saver": "^2.0.5",
"idb": "^8.0.0",
"jszip": "^3.10.1",
"mathjs": "^13.0.3",
"parcel": "^2.12.0",
"three": "^0.161.0",
"vue": "^3.4.37",
"vue-hot-reload-api": "^2.3.4"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@parcel/resolver-glob": "^2.12.0",
"@parcel/transformer-sass": "^2.12.0",
"@parcel/transformer-vue": "^2.12.0",
"@types/node": "^22.2.0",
"@vue/component-compiler-utils": "^3.3.0",
"ava": "^6.1.3",
"gl": "^8.0.2",
"pug": "^3.0.3",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"vue-template-compiler": "^2.7.16"
},
"targets": {
"app": {
"distDir": "dist",
"engines": {
"browsers": [
"last 1 Chrome version"
]
}
},
"test": {
"distDir": "dist-test",
"context": "node",
"optimize": false,
"engines": {
"node": ">= 12"
}
}
}
}