-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.82 KB
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
{
"name": "@griffonnage/sync",
"version": "0.1.2",
"description": "Synchronize drawings from Griffonnage",
"author": {
"name": "Romain Clement",
"email": "contact@romain-clement.net",
"url": "https://romain-clement.net"
},
"repository": {
"type": "git",
"url": "git+https://github.com/griffonnage/griffonnage-sync.git"
},
"bugs": {
"url": "https://github.com/griffonnage/griffonnage-sync/issues"
},
"homepage": "https://github.com/griffonnage/griffonnage-sync#readme",
"private": true,
"license": "AGPL-3.0",
"scripts": {
"clean": "rm -rf dist",
"compile": "tsc",
"build": "npm run clean && npm run compile",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --fix --ext .ts,.js .",
"dev": "ts-node-dev --inspect --no-notify --respawn --transpile-only ./src/index.ts",
"start": "node dist/index.js",
"test": "jest"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-statsd": "^0.1.1",
"pino-http": "^5.5.0",
"socket.io": "^3.1.2",
"socket.io-redis": "^6.0.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/node-statsd": "^0.1.2",
"@types/pino-http": "^5.4.0",
"@types/socket.io": "^2.1.13",
"@types/socket.io-redis": "^1.0.27",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"engines": {
"node": "^14.16.0",
"npm": "^7.6.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}