-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 904 Bytes
/
package.json
File metadata and controls
executable file
·33 lines (33 loc) · 904 Bytes
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
{
"name": "aspire-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "cross-env TEST=unit ava ./test/specs/**/*",
"test:e2e": "cross-env TEST=e2e ava ./test/e2e/**/*"
},
"dependencies": {
"core-js": "^3.15.1",
"nuxt": "^2.15.7",
"simple-vue-validator": "^0.16.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@nuxtjs/tailwindcss": "^4.2.0",
"@vue/test-utils": "^1.2.1",
"ava": "^3.15.0",
"babel-plugin-module-resolver": "^4.1.0",
"cross-env": "^7.0.3",
"jsdom": "^16.6.0",
"jsdom-global": "^3.0.2",
"postcss": "^8.3.5",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^3.0.0"
}
}