-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "@huckleberry-inc/shopify-app-history",
"version": "0.0.3",
"description": "History management library for Shopify app",
"author": "Huckleberry, inc. <dev@huckleberry-inc.com>",
"license": "MIT",
"homepage": "https://github.com/huckleberry-inc/shopify-app-history",
"bugs": {
"url": "https://github.com/huckleberry-inc/shopify-app-history/issues"
},
"repository": "https://github.com/huckleberry-inc/shopify-app-history.git",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"precommit": "lint-staged"
},
"devDependencies": {
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@huckleberry-inc/eslint-config": "^0.0.13",
"@huckleberry-inc/prettier-config": "^0.0.6",
"@types/babel__preset-env": "^7.9.0",
"@types/jest": "^26.0.0",
"@types/react-router-dom": "^5.1.5",
"jest": "^26.0.1",
"typescript": "^3.9.3"
},
"dependencies": {
"@shopify/app-bridge": "^1.24.0",
"react-router-dom": "^5.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
}
}