-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.45 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
85
86
{
"name": "amb-notes",
"description": "Public notes sharing web application",
"version": "1.0.0",
"private": true,
"engines": {
"node": "12.16.x",
"npm": "6.14.x"
},
"repository": "https://github.com/Ambratolm/amb-notes",
"vue": {
"devServer": {
"proxy": {
"^/api": {
"target": "http://db.ambratolm.com:2021",
"ws": true,
"changeOrigin": true,
"pathRewrite": {
"^/api": "/"
}
}
}
}
},
"scripts": {
"serve": "vue-cli-service serve --open --host=app.ambratolm.com --port=2020",
"serve-db": "json-server-auth db/db.js --routes=db/routes.json --watch --delay=0 --host=db.ambratolm.com --port=2021",
"lint": "vue-cli-service lint --fix",
"build": "vue-cli-service build",
"start-m": "nodemon server.js",
"start": "node server.js",
"readme": "markdown-toc -i README.md"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"animate.css": "^3.7.2",
"axios": "^0.19.2",
"buefy": "^0.8.13",
"bulma": "^0.8.1",
"bulmaswatch": "^0.7.5",
"core-js": "^3.6.4",
"express": "^4.17.1",
"faker": "^4.1.0",
"json-server": "^0.16.1",
"json-server-auth": "^1.2.1",
"lodash": "^4.17.15",
"postcss-import": "^12.0.1",
"register-service-worker": "^1.7.1",
"serve-static": "^1.14.1",
"vee-validate": "^3.2.5",
"vue": "^2.6.11",
"vue-meta": "^2.3.3",
"vue-moment": "^4.1.0",
"vue-router": "^3.1.5",
"vuex": "^3.1.3",
"vuex-persist": "^2.2.0"
},
"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-plugin-vuex": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11"
},
"pwa": {
"themeColor": "#FFFFFF",
"iconPaths": {
"favicon16": "img/icons/favicon-16x16.png",
"favicon32": "img/icons/favicon-32x32.png",
"appleTouchIcon": "img/icons/apple-touch-icon-152x152.png",
"maskIcon": "img/icons/safari-pinned-tab.svg",
"msTileImage": "img/icons/msapplication-icon-144x144.png"
}
}
}