-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.64 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
{
"name": "tlsft-api",
"version": "0.1.1",
"description": "Standard API boilerplate for TLSFT.",
"main": "index.js",
"scripts": {
"start": "node .",
"test": "mocha",
"mongo": "docker run --name mongo-dev -p 27017:27017 -d mongo:3.4.23",
"mongo-start": "docker start mongo-dev"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bitmage/tlsft-api.git"
},
"keywords": [
"torchlight",
"fastify",
"mongo",
"mongoose"
],
"author": "[email protected]",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/bitmage/tlsft-api/issues"
},
"private": true,
"homepage": "https://github.com/bitmage/tlsft-api#readme",
"dependencies": {
"@dreamlines/factory-girl": "^6.0.1",
"dotenv": "^16.0.0",
"fastify": "^3.28.0",
"fastify-autocrud": "0.0.4",
"fastify-mongoose-driver": "^3.2.0",
"klaw-sync": "^6.0.0",
"lodash": "^4.17.21",
"make-promises-safe": "^5.1.0",
"mocha": "^9.2.2",
"moment": "^2.29.3",
"mongoose": "^6.3.0",
"torch": "^0.2.7"
},
"lint-staged": {
"*.js": [
"prettier --write '**/*.js'",
"eslint --ext .js --fix .",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"axios": "^0.26.1",
"chai": "^4.3.6",
"chai-samsam": "0.0.2",
"eslint": "^8.13.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2"
}
}