-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "trybers-and-dragons",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --watch \"./src/**\" --ext \"ts,js\" --ignore \"src/**/*.spec.ts,src/**/*.json\" --exec \"ts-node src/index.ts\"",
"test": "jest --runInBand --verbose",
"fasttest": "jest --runInBand --verbose --bail",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betrybe/sd-0x-project-trybers-and-dragons.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/betrybe/sd-0x-project-trybers-and-dragons/issues"
},
"homepage": "https://github.com/betrybe/sd-0x-project-trybers-and-dragons#readme",
"devDependencies": {
"@jest/test-sequencer": "27.4.6",
"@types/express": "4.17.13",
"@types/jest": "27.0.2",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "15.0.0",
"eslint-plugin-editorconfig": "3.2.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-sonarjs": "0.10.0",
"jest": "27.3.1",
"nodemon": "2.0.14",
"ts-jest": "27.0.7",
"ts-node-dev": "1.1.8",
"typescript": "4.4.3"
},
"dependencies": {
"express": "4.17.1",
"express-async-errors": "3.1.1"
}
}