-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "ikea-assignment",
"version": "1.0.0",
"description": "Preeti John Mayyanad - IKEA assignment",
"main": "src/index.ts",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.5.2",
"@types/node": "^18.6.5",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"concurrently": "^7.3.0",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"scripts": {
"build": "npx tsc",
"test": "jest",
"dev" : "concurrently -k \"tsc -p ./ -w\" \"nodemon ./dist/src/index.js\"",
"start": "node dist/src/index.js",
"format": "prettier --check '**/*.{json,md,ts}'",
"format:fix": "prettier --write '**/*.{json,md,ts}'",
"lint": "eslint '**/*.ts'",
"lint:fix": "eslint --fix '**/*.ts'"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.18.1"
}
}