-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 913 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
{
"name": "nori-interview-backend",
"private": true,
"scripts": {
"dev": "nodemon server/index.ts",
"test": "jest --watchAll",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"dependencies": {
"csvtojson": "^2.0.10",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"nodemon": "^2.0.16"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/mocha": "^9.0.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"babel-jest": "27.2.5",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"jest": "^27.2.5",
"supertest": "^6.2.3",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4",
"yaml-loader": "0.6.0"
},
"engines": {
"node": ">=14.0.0"
}
}