-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "okr",
"version": "1.0.0",
"description": "OKR Tracker - Backend",
"main": "server.js",
"scripts": {
"test": "jest",
"opentest": "jest --detectOpenHandles",
"watchtest": "jest --watchAll --forceExit",
"start": "node server.js",
"dev": "nodemon run dev"
},
"keywords": [
"okr"
],
"repository": {
"type": "git",
"url": "https://github.com/udemonia/okr-api"
},
"author": "Brandon Lambert",
"license": "ISC",
"dependencies": {
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/bottom-tabs": "^6.0.5",
"@react-navigation/drawer": "^6.1.4",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.0.7",
"bcryptjs": "^2.4.3",
"chalk": "^4.1.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dayjs": "^1.10.6",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.3.0",
"helmet": "^4.6.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.12.15",
"morgan": "^1.10.0",
"node-mocks-http": "^1.10.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.2.0",
"react-native-safe-area-context": "^3.3.0",
"react-native-screens": "^3.5.0",
"slugify": "^1.5.3",
"supertest": "^6.1.4",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"jest": "^27.0.6"
}
}