-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 KB
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
{
"name": "nuxt-flask",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "NODE_ENV=production nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" .",
"lint": "npm run lint:js",
"test": "jest",
"test:pytest": "pytest -v"
},
"dependencies": {
"accepts": "^1.3.8",
"axios": "^0.27.1",
"nuxt": "^2.15.8"
},
"devDependencies": {
"@nuxt/content": "^1.15.1",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/tailwindcss": "^4.2.1",
"@tailwindcss/custom-forms": "^0.2.1",
"@vue/test-utils": "^1.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.0",
"core-js": "^3.22.1",
"eslint": "^7.30.0",
"eslint-plugin-nuxt": "^3.0.0",
"eslint-plugin-vue": "^7.18.0",
"http-proxy-middleware": "^2.0.5",
"jest": "^27.5.0",
"postcss": "^8.4.21",
"vue-jest": "^3.0.4"
}
}