-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 KB
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
{
"name": "natural-cycles",
"version": "1.0.0",
"description": "Backend Challenge. Firebase require node >=8.13.0",
"engines": {
"node": ">=8.13.0"
},
"engineStrict": true,
"main": "dist/index.js",
"scripts": {
"prod-start": "node .",
"start": "NODE_ENV=development node .",
"prestart": "npm run build",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"typescript",
"prettier",
"session",
"CRUD",
"firebase",
"realtime database"
],
"author": "Baptiste Clarey Sjöstrand",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/baptistecs/Natural-Cycles.git"
},
"dependencies": {
"blake2b": "^2.1.3",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"firebase-admin": "^8.5.0",
"method-override": "^3.0.0"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.14",
"@types/method-override": "0.0.31",
"@types/node": "^12.7.5",
"prettier": "1.18.2",
"typescript": "^3.6.3"
}
}