-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "vue-cli-plugin-express",
"version": "1.0.2",
"description": "vue-cli 3 plugin to add an Express Api",
"main": "index.js",
"scripts": {
"prepublishOnly": "yarn test ",
"test": "yarn test:eslint",
"test:eslint": "eslint --ext .js .",
"changelog": "gitmoji-changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathieutu/vue-cli-plugin-express.git"
},
"keywords": [
"vue",
"vue-cli",
"express",
"api"
],
"author": "Mathieu TUDISCO <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathieutu/vue-cli-plugin-express/issues"
},
"homepage": "https://github.com/mathieutu/vue-cli-plugin-express#readme",
"dependencies": {
"chalk": "^2.4.1",
"cli-table": "^0.3.1",
"connect-history-api-fallback": "^1.5.0",
"esm": "3.2.25",
"express": "^4.17.1",
"express-list-endpoints": "^4.0.1",
"nodemon": "^1.19.1",
"portfinder": "^1.0.21",
"ts-node": "^7.0.1"
},
"devDependencies": {
"@vue/cli-service": "^3.9.2",
"@vue/cli-shared-utils": "^3.9.0",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"gitmoji-changelog": "^1.1.0"
},
"peerDependencies": {
"@vue/cli-service": "^3.0.0",
"@vue/cli-shared-utils": "^3.0.0"
}
}