-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
70 lines (70 loc) · 1.62 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
{
"name": "dolos",
"version": "1.0.0",
"description": "A handy data mocking api to generate data in given schema",
"main": "src/app.js",
"directories": {
"doc": "docs"
},
"scripts": {
"apidocs": "apidoc -i src/api/ -o docs/",
"test": "jest",
"start:dev": "nodemon src/server.js",
"prettier": "prettier \"src/**/*.{js,json}\"",
"format": "npm run prettier -- --write",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"validate": "npm run prettier -- --list-different && npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"npm run format"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ACM-VIT/dolos.git"
},
"keywords": [
"acmvit",
"data",
"mocking",
"api"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ACM-VIT/dolos/issues"
},
"homepage": "https://github.com/ACM-VIT/dolos#readme",
"dependencies": {
"express": "^4.17.1",
"mysql": "^2.18.1"
},
"devDependencies": {
"apidoc": "^0.25.0",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"supertest": "^5.0.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}