forked from NavenAllen/backend.cards.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.76 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "backend.cards.io",
"description": "Backend for cards.io",
"version": "1.0.0",
"main": "literature.js",
"scripts": {
"start": "tsc && node ./dist/app.js",
"lint:fix": "npx eslint --ext .ts --fix",
"lint": "tsc --noEmit && eslint '*/**/*.ts' --quiet --fix",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NavenAllen/backend.cards.io.git"
},
"author": "Delta",
"license": "ISC",
"bugs": {
"url": "https://github.com/NavenAllen/backend.cards.io/issues"
},
"homepage": "https://github.com/NavenAllen/backend.cards.io#readme",
"engines": {
"node": ">=8.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"ext": "ts"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"async": "^3.2.0",
"express": "^4.17.1",
"mongoose": "^5.9.7",
"socket.io": "^2.3.0",
"typescript": "^3.8.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/node": "^13.9.3",
"@types/socket.io": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^15.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prefer-arrow": "^1.1.7",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"nodemon": "^2.0.2",
"prettier": "^2.0.2"
}
}