-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.73 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
{
"name": "studio-api",
"description": "Studio API: Data Access for Agile Research Studios",
"version": "1.0.0",
"private": true,
"homepage": "http://dtr.northwestern.edu/",
"bugs": {
"url": "https://github.com/NUDelta/studio-api",
"email": "[email protected]"
},
"license": "MIT",
"author": "Kapil Garg",
"contributors": [
"Kapil Garg (https://kgarg.com/)"
],
"scripts": {
"start": "node index.js",
"start-watch": "nodemon -r dotenv/config index.js",
"dev": "concurrently \"npm run start-watch\"",
"test": "mocha",
"lines": "npx cloc --exclude-dir=node_modules,.git,fixtures --exclude-ext=json index.js imports models controllers routes config"
},
"engines": {
"node": "^19.x"
},
"type": "module",
"dependencies": {
"@slack/bolt": "^3.17.1",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"debug": "^4.3.4",
"ejs": "^3.1.9",
"express": "^4.18.2",
"google-spreadsheet": "^3.3.0",
"googleapis": "^128.0.0",
"got": "^12.6.0",
"http-errors": "^2.0.0",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"mongoose": "^8.1.1",
"node-schedule": "^2.1.1",
"open": "^9.1.0",
"server-destroy": "^1.0.1",
"tzdata": "^1.0.38",
"sinon": "^15.1.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"babel-eslint": "^10.1.0",
"chai": "^4.3.7",
"cloc": "^2.11.0",
"concurrently": "^8.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"localtunnel": "^2.0.2",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8"
}
}