-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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": "relational-algebra-evaluator-api",
"version": "1.0.0",
"description": "Relational Algebra Evaluator API",
"main": "index.js",
"author": "Maneksh M S",
"license": "MIT",
"scripts": {
"build": "tsc",
"listen": "cross-env NODE_ENV=development node dist/index.js",
"start": "nodemon -e './**/*.ts' --exec 'yarn build && yarn listen'"
},
"volta": {
"node": "14.17.3",
"yarn": "1.22.10"
},
"dependencies": {
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"multer": "^1.4.2",
"reflect-metadata": "^0.1.13",
"relational-algebra-evaluator": "^1.0.3",
"routing-controllers": "^0.9.0",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/node": "^16.3.3",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}