-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "@deepeshgupta/noddy-proj",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"bin": {
"multiply": "bin/cli.js"
},
"scripts": {
"clean": "rimraf dist/*",
"lint": "eslint ./src --ext .ts",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"start": "node .",
"start:dev": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,mts --exec npm run start:dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.2",
"@types/node": "^17.0.38",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-jest": "^28.1.0",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"supertest": "^6.2.3",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"dependencies": {
"@deepeshgupta/noddy": "^0.10.2",
"express": "^4.18.1"
}
}