-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1020 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
32
33
34
35
{
"name": "will-it-fit",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/server.js --ignore client",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm start\"",
"install": "cd server && npm i && cd ../client && npm i",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build",
"lint": "npx eslint --ext .js ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kelseybrianne/will-it-fit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kelseybrianne/will-it-fit/issues"
},
"homepage": "https://github.com/kelseybrianne/will-it-fit#readme",
"devDependencies": {
"concurrently": "^7.1.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.4.0",
"prettier": "2.5.1"
},
"dependencies": {
"leo-profanity": "^1.5.0"
}
}