-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
66 lines (66 loc) · 1.83 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
{
"name": "skills-docs",
"version": "0.1.0",
"license": "Apache-2.0",
"description": "SkillTree Docs",
"author": "SkillTree Team",
"scripts": {
"licenseDepCheck": "license-checker --production --onlyAllow='MIT;Apache-2.0' --summary",
"injectConf": "node injectConf.js",
"build": "npm run licenseDepCheck && vue-cli-service build",
"lint": "vue-cli-service lint",
"docs:dev": "npm run injectConf && vuepress dev docs",
"docs:build": "npm run injectConf && vuepress build docs",
"serve": "npm run docs:dev",
"wait:skills-service": "npx wait-on -t 160000 http://localhost:8080/public/isAlive",
"cy:open": "cypress open --env updateSnapshots=true",
"cy:run": "cypress run --env updateSnapshots=true",
"cy:run:single": "cypress run --env updateSnapshots=true --spec \"cypress/integration/admin.js\""
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.3",
"bootstrap": "5.3.3",
"core-js": "3.14.0",
"vue": "2.6.14"
},
"devDependencies": {
"@vue/cli-plugin-babel": "4.5.13",
"@vue/cli-plugin-eslint": "4.5.13",
"@vue/cli-service": "4.5.13",
"babel-eslint": "10.1.0",
"cypress": "13.14.2",
"cypress-real-events": "1.13.0",
"eslint": "6.8.0",
"eslint-plugin-vue": "7.7.0",
"license-checker": "25.0.1",
"replace-in-file": "6.2.0",
"rimraf": "3.0.2",
"vue-server-renderer": "2.6.14",
"vue-template-compiler": "2.6.14",
"vuepress": "1.8.2",
"wait-on": "5.3.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}