-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "ilmo-backend",
"version": "1.0.0",
"description": "Backend for the standalone ilmojärjestelmä",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev src/index.ts --watch ./src --clear",
"build": "tsc --project tsconfig.json",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DigitKoodit/ilmo-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DigitKoodit/ilmo-backend/issues"
},
"homepage": "https://github.com/DigitKoodit/ilmo-backend#readme",
"dependencies": {
"contentful": "^9.1.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"module-alias": "^2.2.2",
"mongoose": "^6.1.0",
"mongoose-unique-validator": "^3.0.0",
"node-cache": "^5.1.2",
"ts-node-dev": "^1.1.8"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^14.18.0",
"typescript": "^4.5.2"
},
"_moduleAliases": {
"@": "dist"
}
}