-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
70 lines (70 loc) · 2.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "lookahead",
"version": "1.0.0",
"description": "UoM Timetable Optimiser",
"main": "dist/server.js",
"dependencies": {
"@sentry/node": "^6.16.1",
"@types/cheerio": "^0.22.30",
"@types/morgan": "^1.9.3",
"@types/request": "^2.48.8",
"@types/winston": "^2.4.4",
"aws-sdk": "^2.1049.0",
"body-parser": "^1.19.1",
"cheerio": "^1.0.0-rc.10",
"concurrently": "^7.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"googleapis": "^92.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"morgan": "^1.10.0",
"request": "^2.88.2",
"rotating-file-stream": "^3.0.2",
"s3-streamlogger": "^1.7.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.7",
"babel-plugin-transform-class-properties": "^6.24.1",
"chai": "^4.3.4",
"jest": "^24.9.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"prettier": "2.5.1",
"react-test-renderer": "^17.0.2",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"scripts": {
"build-ts": "tsc",
"start": "node --tls-min-v1.0 dist/server.js",
"express-debug": "node --inspect=5000 -r ts-node/register server.ts",
"express-debug:watch": "nodemon",
"server": "yarn ts-node-dev --tls-min-v1.0 -- server.ts",
"test-client": "jest --rootDir client",
"test": "yarn run build-ts && mocha dist/test --recursive && yarn run test-client",
"client": "yarn start --prefix client",
"dev": "concurrently \"yarn run server\" \"yarn run client\"",
"dev-install": "yarn install && yarn install --cwd client",
"postinstall": "yarn run build-ts",
"heroku-postbuild": "yarn install --cwd client && yarn --cwd client run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Trontor/lookahead.git"
},
"author": "Rohyl Joshi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Trontor/lookahead/issues"
},
"homepage": "https://github.com/Trontor/lookahead#readme",
"proxy": "http://localhost:5000/"
}