-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 2 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
{
"name": "fernspieleditor",
"version": "0.9.1",
"description": "Online editor for fernspielapparat phonebooks",
"main": "index.js",
"repository": "https://github.com/krachzack/fernspieleditor.git",
"author": "krachzack <hello@phstadler.com>",
"license": "Unlicense",
"dependencies": {
"deep-equal": "^2.0.3",
"file-saver": "^2.0.1",
"picnic": "^6.5.0",
"sanitize.css": "^8.0.0",
"vue": "^2.6.10",
"vue-global-events": "^1.1.2",
"vue-hot-reload-api": "^2.3.3",
"vuex": "^3.1.0",
"yaml": "^1.5.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "2",
"@typescript-eslint/parser": "^2.29.0",
"@vue/component-compiler-utils": "^2.6.0",
"babel-jest": "^24.8.0",
"cssnano": "^4.1.10",
"eslint": "6",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-with-typescript": "^16.0.0",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "4",
"eslint-plugin-vue": "^6.2.2",
"jest": "^25.4.0",
"karma": "^4.2.0",
"parcel": "^1.12.3",
"sass": "^1.17.2",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3",
"vue-eslint-parser": "^7.0.0",
"vue-template-compiler": "^2.6.10"
},
"scripts": {
"test": "jest",
"lint": "eslint -c eslintrc-vue-and-js.js --ext .js,.vue assets/javascript tests index.js; eslint -c eslintrc-typescript.js --ext .ts assets/javascript tests",
"fix": "eslint --fix -c eslintrc-vue-and-js.js --ext .js,.vue assets/javascript tests index.js; eslint --fix -c eslintrc-typescript.js --ext .ts assets/javascript tests",
"build": "mkdir -p docs && rm -rf docs && mkdir -p docs && parcel build index.html --out-dir docs --no-source-maps --public-url https://krachzack.github.io/fernspieleditor",
"dev": "parcel index.html"
}
}