-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 921 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
28
29
30
31
{
"name": "hacktheocean",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client": "cd client && npm run serve",
"server": "cd server && npm run serve",
"serve": "concurrently \"npm run client\" \"npm run server\"",
"setup": "npm install && cd client && npm install && cd ../server && npm install",
"linter": "node ./node_modules/eslint/bin/eslint.js .",
"linter-fix": "node ./node_modules/eslint/bin/eslint.js . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OmarVenturaP/HackTheOcean.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/OmarVenturaP/HackTheOcean/issues"
},
"homepage": "https://github.com/OmarVenturaP/HackTheOcean#readme",
"dependencies": {
"concurrently": "^7.2.0"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-plugin-vue": "^9.0.1"
}
}