-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "web-vison",
"version": "0.1.2",
"description": "It is an open source project to provide opencv function on the web.",
"license": "MIT",
"private": false,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"prisma": "npx prisma migrate dev --name db && npx prisma generate",
"studio": "npx prisma studio",
"clear-db": "node ./utils/clear-db.js"
},
"repository": {
"type": "git",
"url": "https://github.com/JeHwanYoo/web-vision"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.4",
"@nuxtjs/pwa": "^3.3.5",
"@prisma/client": "^2.23.0",
"@types/crypto-js": "^4.0.1",
"@types/randomstring": "^1.1.6",
"core-js": "^3.12.1",
"crypto-js": "^4.0.0",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"nuxt": "^2.15.6",
"randomstring": "^1.2.1",
"validator": "^13.6.0",
"vue-property-decorator": "^9.1.2",
"vuex-class": "^0.3.2"
},
"devDependencies": {
"@nuxt/types": "^2.15.6",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/vuetify": "^1.11.3",
"@types/express": "^4.17.11",
"@types/validator": "^13.1.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0",
"prisma": "^2.23.0"
}
}