-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 897 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
{
"name": "ggNext",
"version": "0.0.1",
"description": "Viewer challenge queue for Twitch.tv",
"main": "app.js",
"scripts": {
"build": "npx babel client/src --out-dir client --presets @babel/preset-react",
"configure": "node configure.js",
"start": "node app.js",
"dev": "node start_dev_env.js dev",
"test": "node start_dev_env.js test"
},
"author": "Michael Rose",
"license": "AGPL-3.0-only",
"dependencies": {
"express": "^4.16.4",
"mongodb": "^3.2.2",
"got": "^9.6.0",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.4.0",
"connect-mongodb-session": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/cli": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"nodemon": "^1.18.10",
"jest": "^24.7.1",
"supertest": "^4.0.2"
},
"engines": {
"node": "10.x.x"
}
}