-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.15 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
{
"name": "begin-app",
"version": "0.0.0",
"description": "Begin basic Vue app + API",
"scripts": {
"start": "run-s build api",
"api": "cross-env NODE_ENV=testing ARC_LOCAL=1 npx sandbox",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "eslint src --ignore-pattern node_modules --fix",
"test": "run-s test:api test:unit",
"test:api": "cross-env NODE_ENV=testing PORT=6666 tape test/*-test.js test/**/*-test.js | tap-spec",
"test:unit": "vue-cli-service test:unit"
},
"devDependencies": {
"@architect/sandbox": "^3.3",
"@begin/data": "latest",
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-plugin-eslint": "^4.5.7",
"@vue/cli-plugin-unit-mocha": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"@vue/test-utils": "1.1.2",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"core-js": "^3.8.2",
"cross-env": "^7.0.3",
"eslint": "^7.17.0",
"eslint-plugin-vue": "^7.4.1",
"npm-run-all": "^4.1.5",
"tap-spec": "^5.0.0",
"tape": "^5.1.1",
"tiny-json-http": "^7.3.0",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {}
}