forked from chih98/extend-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.5 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
{
"name": "extend-woocommerce",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./build && tsc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "npm run build && node build/index.js"
},
"keywords": [
"extend",
"woocommerce"
],
"author": "Marko Crnkovic, Paul Ke, Tony Jimenez",
"license": "BSD-3-Clause-No-Nuclear-License",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@types/node": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"husky": "^4.2.3",
"lint-staged": "^10.1.6",
"node-hot-loader": "^1.17.9",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.7.5",
"webpack": "^4.43.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"follow-redirects": "^1.11.0",
"request": "^2.88.2"
}
}