-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "heroes-vue",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"backend": "json-server-auth --watch db.json --routes routes.json --port 9627 --middlewares ./node_modules/json-server-reset",
"cypress": "npx cypress open",
"e2e": "concurrently \"npm run quick\" \"npm run cypress\"",
"quick": "concurrently \"npm run backend\" \"npm run serve\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/vue-fontawesome": "^0.1.9",
"axios": "^0.19.2",
"bulma": "^0.8.0",
"core-js": "^3.6.4",
"express": "^4.16.4",
"vue": "^2.6.11",
"vue-router": "^3.1.5",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.2.2",
"@vue/cli-plugin-eslint": "~4.2.2",
"@vue/cli-service": "~4.2.2",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.0.3",
"concurrently": "^5.1.0",
"cypress": "^4.1.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.1.2",
"json-server": "^0.16.1",
"json-server-auth": "^1.2.1",
"json-server-reset": "^1.0.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11"
}
}