-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.13 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
{
"name": "begin-app",
"version": "0.0.0",
"description": "Begin basic Vue app + API",
"scripts": {
"start": "npm run build && npm run 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": "cross-env NODE_ENV=testing PORT=6666 tape test/*-test.js test/**/*-test.js | tap-spec && vue-cli-service test:unit",
"test:unit": "vue-cli-service test:unit"
},
"devDependencies": {
"@architect/sandbox": "latest",
"@begin/data": "latest",
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-plugin-unit-mocha": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/test-utils": "1.0.0-beta.32",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"tap-spec": "^5.0.0",
"tape": "^5.0.0",
"tiny-json-http": "^7.1.2",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {}
}