-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.9 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "versioned-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "bin/write-env && $(npm bin)/vue-cli-service serve --open",
"build": "bin/write-env && $(npm bin)/vue-cli-service build",
"lint": "$(npm bin)/vue-cli-service lint",
"dev": "VUE_APP_API_URL=http://localhost:3000/v1 npm run serve",
"start": "node server.js",
"heroku-postbuild": "npm install --production=false && npm run build",
"test": "npm run test:unit && npm run test:e2e --headless",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e"
},
"dependencies": {
"@vue/eslint-config-standard": "4.0.0",
"ajv": "^6.4.0",
"axios": "0.17.1",
"core-js": "2.6.5",
"express": "4.16.2",
"vue": "2.6.10",
"vue-codemirror": "^4.0.6",
"vue-router": "3.0.6",
"vuex": "3.1.0"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.0.3",
"@vue/cli-plugin-babel": "3.7.0",
"@vue/cli-plugin-e2e-cypress": "3.7.0",
"@vue/cli-plugin-eslint": "3.7.0",
"@vue/cli-plugin-unit-jest": "^3.7.0",
"@vue/cli-service": "3.7.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "^23.6.0",
"cheerio": "1.0.0-rc.3",
"eslint": "5.16.0",
"eslint-plugin-vue": "5.0.0",
"vue-template-compiler": "2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"node": true
},
"extends": [
"plugin:vue/essential",
"standard"
],
"rules": {
"no-unneeded-ternary": 0,
"no-throw-literal": 0,
"object-curly-spacing": 0,
"vue/require-v-for-key": false
},
"globals": {
"cloudinary": true
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"engines": {
"node": "10.x"
}
}