-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
27 lines (27 loc) · 917 Bytes
/
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
{
"name": "cards-against-morality",
"version": "0.0.0",
"private": true,
"description": "",
"scripts": {
"build:client": "cd ./client && npm run build",
"build:server": "cd ./server && npm run build",
"build": "npm run build:client && npm run build:server",
"start": "cd ./server && npm run generate && npm run migrate && npm run start",
"dev:client": "cd ./client && npm run dev",
"dev:server": "cd ./server && npm run dev",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ignore-path ./.gitignore"
},
"author": "loloToster",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-vue": "^9.9.0",
"prettier": "^2.8.4"
}
}