-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 2.1 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
44
45
46
47
48
49
50
51
52
53
{
"name": "muffin-app",
"version": "0.1.0",
"description": "Light weight express JS with TS",
"main": "index.ts",
"scripts": {
"dev": "nodemon -q index.ts",
"build": "npx tsc",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"test:unit": "cross-env TEST=true mocha --require ts-node/register --require tsconfig-paths/register test/unit --all --recursive --extension .ts --timeout 3000 --exit",
"test:integration": "cross-env TEST=true mocha --require ts-node/register --require tsconfig-paths/register test/integration --all --recursive --extension .ts --timeout 60000 --exit",
"test:e2e": "cross-env TEST=true mocha --require ts-node/register --require tsconfig-paths/register test/e2e --all --recursive --extension .ts --timeout 60000 --exit",
"test:cov": "cross-env TEST=true nyc mocha --require ts-node/register --require tsconfig-paths/register test --recursive --extension .ts --timeout 60000 --exit",
"test:report": "nyc report --reporter=lcov --report-dir=.nyc_coverage",
"format": "npx prettier --write .",
"format:check": "npx prettier --check .",
"deploy": "serverless deploy --verbose"
},
"author": "Prajyot Khandeparkar",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.5",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.5",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"mocha": "^10.2.0",
"prettier": "2.8.8",
"sinon": "^15.2.0",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.0.4"
}
}