forked from w3c/wai-wcag-em-report-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.05 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
{
"name": "WCAG-EM-Report-Tool",
"version": "3.0.3",
"repository": {
"type": "git",
"url": "git://github.com/w3c/wcag-em-report-tool.git"
},
"scripts": {
"build": "npm run clean:build & rollup -c",
"build-production": "export BASEPATH='/WAI/eval/report-tool' && npm run clean:build && rollup -c",
"build-ghpages": "export BASEPATH='/wai-wcag-em-report-tool' && npm run clean:build && rollup -c",
"dev": "export BASEPATH='' && npm run clean:dev & rollup -c -w",
"clean": "rimraf ./build ./node_modules",
"clean:build": "rimraf ./build",
"clean:dev": "rimraf ./build",
"serve": "serve ./build"
},
"main": "src/main.js",
"dependencies": {
"jsonld": "^3.2.0",
"marked": "^1.2.9",
"serve": "^14.2.1",
"sirv-cli": "^1.0.0",
"svelte-navigator": "^3.1.4"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-dynamic-import-vars": "^1.1.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.3.3",
"colors": "^1.4.0",
"deepmerge": "^4.2.2",
"eslint": "^7.15.0",
"eslint-plugin-svelte3": "^2.7.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"prettier-plugin-svelte": "^1.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.38.4",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-serve": "^1.0.3",
"rollup-plugin-svelte": "^6.0.0",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.29.0",
"svelte-i18n": "3.3.0"
},
"engines": {
"node": ">=12.18.0 <13.0.0"
}
}