forked from y-e-e-t-c-o-d-e/tag.it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 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
{
"name": "tag.it",
"version": "1.0.0",
"description": "Our awesome CSE110 Project!",
"dependencies": {
"firebase": "^7.14.3",
"firebase-tools": "^8.2.0",
"mocha": "^7.1.2",
"nodemailer": "^6.4.6",
"nodemon": "^2.0.3",
"react-autosuggest": "^10.0.2",
"react-bootstrap": "^1.0.1"
},
"devDependencies": {
"concurrently": "^4.0.1"
},
"scripts": {
"client": "cd client && yarn start",
"server": "cd backend && nodemon app.js",
"clientTest": "cd client && yarn test",
"serverTest": "cd backend && yarn test",
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"test": "yarn clientTest && yarn serverTest",
"install": "cd client/ && yarn && cd ../ && cd backend/ && yarn && cd ../",
"clean": "rm -rf node_modules/ && cd client/ && yarn clean && cd ../ && cd backend/ && yarn clean && cd ../"
},
"repository": {
"type": "git",
"url": "git+https://github.com/y-e-e-t-c-o-d-e/tag.it.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/y-e-e-t-c-o-d-e/tag.it/issues"
},
"homepage": "https://github.com/y-e-e-t-c-o-d-e/tag.it#readme"
}