This repository has been archived by the owner on Nov 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
62
63
{
"name": "numl-storybook",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"deploy": "npm run build-preview && vue-cli-service build && rsync -ruv dist/* cloud:/usr/share/nginx/numl.design/",
"build-preview": "parcel build --target browser --out-dir public/preview/ --out-file index.html --public-url . public/preview.html"
},
"dependencies": {
"axios": "^0.19.2",
"clipboard-copy": "^3.1.0",
"codemirror": "^5.56.0",
"core-js": "^3.6.4",
"lockr": "^0.8.5",
"lz-string": "^1.4.4",
"numl": "^0.10.10",
"register-service-worker": "^1.6.2",
"vue": "^2.6.11",
"vue-codemirror": "^4.0.6",
"vue-router": "^3.1.5"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-pwa": "~4.2.0",
"@vue/cli-plugin-router": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-vue": "^6.1.2",
"hosted-git-info": "^3.0.2",
"parcel": "^1.12.4",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/airbnb"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"no-param-reassign": "off",
"import/prefer-default-export": "off"
}
},
"browserslist": [
"iOS 10",
"last 10 Chrome versions",
"last 5 Firefox versions",
"last 3 Safari versions"
]
}