generated from Be-Next-Tech/checkout-system-pricing-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "checkout-system-pricing",
"version": "1.0.0",
"description": "Implement pricing for a checkout system",
"main": "index.js",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"scripts": {
"start": "npm run test:watch",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watchAll",
"test:coverage": "NODE_ENV=test jest --coverage"
},
"devDependencies": {
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.3",
"@types/require-dir": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.5",
"faker": "^4.1.0",
"husky": ">=4",
"jest": "^26.1.0",
"jest-ts-auto-mock": "^1.0.11",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"ts-auto-mock": "^2.3.0",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.50",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.10",
"typescript": "^3.9.6"
},
"dependencies": {
"require-dir": "^1.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}