-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "test-circle-ci-clever-cloud",
"version": "1.0.0",
"main": "src/index.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "nodemon",
"start": "node dist/index.js",
"build": "tsc -p ./tsconfig.build.json",
"lint": "eslint --ext .ts src/ tests/",
"lint:fix": "yarn lint --fix",
"test": "jest --detectOpenHandles"
},
"dependencies": {
"express": "4.17.2"
},
"devDependencies": {
"@snowpact/eslint-config": "^1.2.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"repository": "[email protected]:sabalot/test-circle-ci-clever-cloud.git",
"author": "Sabalot <[email protected]>",
"license": "MIT"
}