-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "begin-app",
"version": "0.0.0",
"description": "Begin basic Vue app + API",
"arc": {
"app": "vue-app",
"http": [
{
"/api": {
"method": "get",
"src": "/api"
}
}
],
"static": {
"folder": "dist"
},
"tables": [
{
"data": {
"scopeID": "*String",
"dataID": "**String",
"ttl": "TTL"
}
}
]
},
"scripts": {
"start": "run-s build api",
"api": "npx sandbox",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "eslint src --ignore-pattern node_modules --fix",
"test": "vue-cli-service test:unit"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "^4.5.7",
"@vue/cli-plugin-unit-mocha": "^4.5.11",
"@vue/cli-service": "^4.5.11",
"@vue/test-utils": "1.1.3",
"npm-run-all": "^4.1.5",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^7.7.0",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"@architect/sandbox": "^3.3.7",
"@begin/data": "^1.2.3"
}
}