-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "shopify-service",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:unit": "yarn test --watch -c jest-unit-config.js",
"test:integration": "yarn test --watch -c jest-integration-config.js",
"test:ci": "yarn test --coverage",
"test:staged": "yarn test --findRelatedTests"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.9",
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.19",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^5.1.0",
"fast-glob": "^3.2.4",
"git-commit-msg-linter": "^3.0.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.0",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.2"
},
"dependencies": {
"axios": "^0.21.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"rimraf": "^3.0.2"
}
}