-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
{
"name": "apply-yourself",
"version": "1.0.0",
"description": "Make applying for colleges simpler and more organized by collecting information about the colleges you are interested in, and keeping it in one place.",
"main": "server.js",
"scripts": {
"server": "node server.js",
"client": "cd client && npm run start",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "node scripts/build.js",
"deploy": "yarn build && git add . && git commit -m \"Building for production\" && git push heroku master",
"test": "echo \"Error: no test specified\" && exit 1",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.18.2",
"bootstrap": "4.3.1",
"express": "^4.16.0",
"jsonwebtoken": "^8.0.1",
"moment": "^2.19.3",
"mongoose": "^5.12.3",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"prop-types": "^15.6.2",
"radium": "^0.19.4",
"react": "^16.13.1",
"react-addons-css-transition-group": "^15.6.2",
"react-addons-transition-group": "^15.6.2",
"react-dom": "^16.0.1",
"react-router-dom": "^4.2.2",
"reactstrap": "^4.8.0",
"validator": "^13.6.0",
"snyk": "^1.518.0"
},
"snyk": true
}