-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
47
48
49
50
51
52
53
54
55
56
{
"name": "GotPong",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"start": "nuxt start",
"lint:js": "eslint --ext \".js,.vue,.ts\" --ignore-path .gitignore .",
"lint": "yarn lint:js"
},
"_moduleAliases": {
"@includes": "includes",
"@templates": "templates",
"@channels": "channels"
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/pwa": "^3.3.5",
"@prisma/client": "^3.5.0",
"core-js": "^3.15.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"nuxt": "^2.15.3",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.10",
"source-map-support": "^0.5.19",
"ts-node": "^10.0.0",
"typeorm": "0.2.34"
},
"devDependencies": {
"@nuxt/types": "^2.15.3",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/tailwindcss": "^4.2.1",
"@types/express": "^4.17.11",
"@types/lodash": "^4.14.170",
"@types/node": "^16.3.1",
"@types/session-file-store": "^1.2.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.13.0",
"fibers": "^5.0.0",
"prettier": "^2.3.2",
"prisma": "^3.5.0",
"typescript": "^4.5.2"
}
}