-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.54 KB
/
package.json
File metadata and controls
83 lines (83 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
76
77
78
79
80
81
82
83
{
"name": "svelte-app",
"version": "1.0.0",
"scripts": {
"build": "NODE_ENV=production rollup -c --environment dir:public",
"deploy": "NODE_ENV=production rollup -c --environment dir:docs",
"dev": "rollup -c -w --environment dir:public",
"start": "sirv public -p 8080",
"validate": "svelte-check",
"test": "scripty && npx nyc --reporter=text mocha"
},
"devDependencies": {
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^0.20.0",
"@codemirror/lang-javascript": "^0.20.0",
"@codemirror/language": "^0.20.2",
"@lezer/highlight": "^0.16.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.1.0",
"@tsconfig/svelte": "^1.0.0",
"@types/esprima": "^4.0.3",
"@types/file-saver": "^2.0.5",
"@types/node": "^18.0.0",
"@types/wicg-file-system-access": "^2020.9.5",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"autoprefixer": "^10.2.3",
"eslint": "^7.32.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-promise": "^6.0.0",
"lzw-compressor": "^21.6.5",
"postcss": "^8.2.4",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"stylelint": "^14.8.5",
"stylelint-config-standard": "^25.0.0",
"svelte": "^3.0.0",
"svelte-check": "^1.6.0",
"svelte-preprocess": "^4.6.3",
"tailwindcss": "^2.0.2",
"tslib": "^2.0.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@codemirror/theme-one-dark": "^0.20.0",
"@lezer/javascript": "^0.16.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"@testing-library/svelte": "^3.1.3",
"@types/assert": "^1.5.6",
"@types/chai": "^4.3.1",
"@types/chai-http": "^4.2.0",
"@types/express": "^4.17.13",
"@types/jsdom": "^16.2.14",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint-plugin-svelte3": "^2.7.3",
"eslint4b-prebuilt": "^6.7.2",
"esprima": "^4.0.1",
"file-saver": "^2.0.5",
"jsdom": "^20.0.0",
"lzw-compressor": "^21.6.5",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"scripty": "^2.1.0",
"serve": "^13.0.2",
"sirv-cli": "^1.0.0",
"source-map-support": "^0.5.21",
"svelte-modals": "^1.1.0",
"ts-graphviz": "^0.16.0",
"ts-standard": "^11.0.0"
},
"resolutions": {
"@codemirror/state": "0.20.1"
},
"mocha": {
"spec": "build/bundle-tests.js"
}
}