-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.7 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.7 KB
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": "YoGo",
"version": "1.0.0",
"description": "",
"main": "server.js",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cypress": "^6.8.0",
"eslint": "^7.21.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"if-env": "^1.0.4",
"mongoose": "^5.11.19",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react-beautiful-dnd": "^13.0.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"concurrently": "^6.0.0",
"eslint-plugin-react": "^7.22.0",
"nodemon": "^2.0.7"
},
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"seed": "node scripts/activitySeed.js",
"seed:users": "node scripts/testUsersSeed.js",
"install": "cd client && npm install",
"build": "CI=false && cd client && npm run build",
"heroku-postbuild": "npm run build",
"test": "npm run lint && npm run cy",
"lint": "eslint \"**/*.js\"",
"cy": "cypress run",
"cy:show": "cypress run --headed",
"cy:show_chrome": "cypress run --headed --browser chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tforde4623/YoGo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tforde4623/YoGo/issues"
},
"homepage": "https://github.com/tforde4623/YoGo#readme"
}