-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.54 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.54 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
{
"name": "gfxbcts",
"version": "0.1.0",
"description": "",
"scripts": {
"start": "parcel ./src/index.html --no-hmr --no-cache",
"start-intro": "parcel src/introduction/sites/*.pug --no-hmr --no-cache --port 2345",
"start-publish": "parcel experiments/published.html --no-hmr --no-cache --port 3456",
"start-web": "parcel src/web/*.pug --no-hmr --no-cache --port 4567",
"build-intro": "parcel build src/introduction/sites/*.pug --dist-dir dist-intro --no-source-maps",
"build-cheat": "parcel build src/introduction/sites/cheatsheet.pug --dist-dir dist-cheat --no-source-maps",
"build-lib": "parcel build src/publish/dapentryLib --no-source-maps",
"build-web": "parcel build src/web/*.pug --dist-dir dist-web --no-source-maps --no-optimize",
"build": "parcel build src/index.html --no-scope-hoist --no-source-maps --dist-dir dist-designer ",
"test": "mocha -r ts-node/register -r node-fetch --recursive test/**/*.ts",
"coverage": "nyc npm run test",
"build:docs": "npx typedoc --entryPointStrategy expand ./src --out ./doc/reference"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"client-zip": "^2.0.1",
"d3": "^7.3.0",
"lodash": "^4.17.21",
"vue": "^3.2.29",
"vue-i18n": "^9.2.0-beta.30",
"vuex": "^4.0.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@parcel/transformer-inline-string": "^2.4.0",
"@parcel/transformer-less": "^2.2.1",
"@parcel/transformer-pug": "^2.3.2",
"@parcel/transformer-vue": "^2.2.1",
"@types/chai": "^4.3.0",
"@types/d3": "^7.1.0",
"@types/jquery": "^3.5.1",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.5",
"@types/node-fetch": "^2.6.1",
"@types/qunit": "^2.5.4",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/compiler-sfc": "^3.2.29",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"parcel": "^2.2.1",
"parcel-resolver-ignore": "^2.0.0",
"parcel-transformer-tsc-sourcemaps": "^1.0.2",
"pegjs": "^0.10.0",
"sinon": "^12.0.1",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typedoc-plugin-rename-defaults": "^0.4.0",
"typescript": "^4.5.5"
},
"parcelIgnore": [
"introduction.html",
"imprint.html",
"imprint-en.html",
"privacy.html",
"privacy-en.html",
"termsofservice.html",
"steps.html",
"editingSteps.html",
"usingData.html",
"loops.html",
"barChart.html",
"star.html"
]
}