-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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": "slack-estimation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-s build run",
"run": "node build/index.js",
"build": "tsc --project tsconfig.build.json",
"test": "run-p test:unit test:integration",
"test:unit": "mocha",
"test:integration": "mocha 'test/*.js'",
"lint": "eslint .",
"dev": "run-p dev:*",
"dev:build": "npm run build -- --watch",
"dev:run": "nodemon build/index.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.2",
"@types/ramda": "^0.26.41",
"@types/uuid": "^3.4.7",
"axios": "^0.27.2",
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"npm-run-all": "^4.1.5",
"ramda": "^0.26.1",
"typescript": "^3.7.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"fishery": "^2.2.2",
"husky": "^2.4.1",
"mocha": "^6.2.3",
"nock": "^10.0.6",
"nodemon": "^2.0.2",
"ts-node": "^10.8.0"
}
}