forked from ergonode/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.37 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
76
77
78
79
80
81
82
83
84
{
"name": "ergonode-front",
"version": "0.1.0",
"description": "Ergonode - Desktop PWA Ready Product Information Management Platform",
"keywords": [
"ergonode",
"PIM"
],
"author": "Ergonode team",
"private": true,
"bin": {
"cli:run": "./lib/index.js"
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"lint:scss": "stylelint './**/*.scss' './**/*.vue'",
"lint": "eslint --ext .js,.vue . && npm run lint:scss",
"lint:dev": "npm run lint -- --cache && npm run lint:scss",
"test": "jest --no-cache",
"test:dev": "npm run test -- --coverage --u",
"cli:run": "./lib/index.js"
},
"dependencies": {
"@babel/runtime": "^7.6.2",
"@nuxtjs/axios": "^5.9.3",
"@nuxtjs/component-cache": "^1.1.5",
"@nuxtjs/router": "^1.5",
"@nuxtjs/style-resources": "^1.0",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"commander": "^3.0.2",
"cookie-universal-nuxt": "^2.0.14",
"cypress": "^3.4.1",
"date-fns": "^2.9.0",
"debounce": "^1.2.0",
"dotenv": "^8.1.0",
"figlet": "^1.2.1",
"fs": "0.0.1-security",
"inquirer": "^7.0.0",
"nuxt": "^2.11.0",
"ora": "^4.0.2",
"shelljs": "^0.8.3",
"vue-uuid": "^1.1.1",
"vuex": "^3.1.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.3.1",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8",
"babel-jest": "^24.7.1",
"babel-plugin-dynamic-import-node": "^2.2.0",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-loader": "^3.0.1",
"eslint-plugin-cypress": "^2.6.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-notice": "^0.8.8",
"eslint-plugin-vue": "^5.1.0",
"husky": "^3.0.8",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"jsdom": "^15.1.1",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.0",
"sinon": "^7.2.3",
"stylelint": "^11.0.0",
"stylelint-config-recommended-scss": "^4.0.0",
"stylelint-order": "^3.1.1",
"stylelint-scss": "^3.5.4",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-jest": "^3.0.2",
"vuex-mock-store": "0.0.7"
}
}