-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 938 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
39
40
41
42
{
"name": "funapi",
"version": "1.0.0",
"description": "",
"main": "main.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamietheminyard/FunAPI.git"
},
"author": "Jamie Minyard",
"license": "ISC",
"bugs": {
"url": "https://github.com/jamietheminyard/FunAPI/issues"
},
"homepage": "https://github.com/jamietheminyard/FunAPI#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"multer": "^1.4.2",
"pg": "^8.7.1",
"redis": "^3.1.2",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^27.0.6",
"prisma": "^2.27.0",
"superagent": "^6.1.0",
"supertest": "^6.1.4"
}
}