-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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": "jscourse",
"version": "0.0.1",
"description": "© Здесь могла бы быть ваша реклама)",
"scripts": {
"test": "jest --config jest.local.js --testTimeout=50000"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint . --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mnmlsniper/jsCourse.git"
},
"author": "mnmlsniper",
"license": "ISC",
"bugs": {
"url": "https://github.com/mnmlsniper/jsCourse/issues"
},
"homepage": "https://github.com/mnmlsniper/jsCourse#readme",
"dependencies": {
"@babel/preset-env": "^7.16.11",
"@faker-js/faker": "^6.1.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^24.7.0",
"husky": "^7.0.4",
"jest-allure": "^0.1.3",
"jest-cli": "^27.5.1",
"jest-html-reporters": "^3.0.6",
"lint-staged": "^11.2.6",
"node-fetch": "^2.6.7",
"supertest": "^6.2.2"
},
"devDependencies": {
"jest": "^28.1.0"
}
}