-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "CalibrationApp",
"version": "1.0.0",
"description": "A web application for use by Paracosm which hopes to help engineers update their calibration files for the PX-80.",
"main": "server.js",
"scripts": {
"test": "mocha server/tests",
"install-all": "concurrently \"npm install\" \"cd client && npm install\"",
"client": "cd client && npm start",
"server": "nodemon server/server.js",
"dev": "concurrently \"nodemon server/server.js\" \"cd client && npm run start\"",
"build": "cd client && npm build",
"start": "node server/server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run-script install-all && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/CEN3031-SoftwareEng-5D/CalibrationProject"
},
"keywords": [],
"author": "Luke Herczeg",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.576.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-validator": "^6.2.0",
"isomorphic-fetch": "^2.2.1",
"concurrently": "^4.1.2",
"cors": "^2.8.5",
"formidable": "^1.2.1",
"http-proxy-middleware": "^0.20.0",
"jquery": "^3.4.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mocha": "^6.2.1",
"mongoose": "^5.7.1",
"morgan": "^1.9.1",
"nodemon": "^1.19.4",
"popper.js": "^1.16.0",
"react": "^16.12.0",
"reactstrap": "^8.1.1",
"run-script": "^0.1.1",
"shortid": "^2.2.15",
"should": "^13.2.3",
"slugify": "^1.3.6",
"string-strip-html": "^4.3.8",
"supertest": "^4.0.2",
"typescript": "^3.7.2",
"uuid": "^3.3.3"
},
"homepage": "https://github.com/CEN3031-SoftwareEng-5D/CalibrationProject"
}