-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 994 Bytes
/
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
{
"name": "wingy",
"version": "1.0.0",
"description": "Wing ordering robot",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node ./server/index.js",
"debug": "node --inspect ./server/index.js",
"clean": "node ./scripts/clean.js",
"bot": "node ./bot/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"author": "jlankford",
"license": "ISC",
"dependencies": {
"@babel/eslint-parser": "^7.24.1",
"@slack/web-api": "^7.0.2",
"body-parser": "^1.20.2",
"chalk": "^5.3.0",
"eslint": "^7.32.0 || ^8.2.0",
"express": "^4.19.2",
"mongodb": "^6.5.0",
"puppeteer": "^22.6.1",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@babel/plugin-syntax-import-assertions": "^7.24.1",
"add": "^2.0.6",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.0.6",
"yarn": "^1.22.22"
},
"jest": {
"transform": {}
}
}