-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
61
62
63
64
65
{
"name": "shopify-app-boilerplate-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"ngrok": "ngrok http 3000",
"lint": "eslint \"./**/*.ts\"",
"lint:fix": "eslint 1--fix \"./**/*.ts\" ",
"test:ci": "node tools/tests",
"test": "jest",
"test:watch": "jest --watch",
"test:units": "jest .*.unit.test.ts",
"test:units:github-actions": "jest .*.unit.test.ts"
},
"dependencies": {
"@shopify/app-bridge": "^1.20.1",
"@shopify/app-bridge-react": "^1.20.1",
"@shopify/polaris": "^4.16.1",
"@shopify/react-i18n": "^2.4.0",
"@types/mongodb": "^3.5.4",
"axios": "^0.19.2",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"immer": "^6.0.2",
"immer-combine-reducers": "^1.0.1",
"isomorphic-unfetch": "^3.0.0",
"mongodb": "^3.5.5",
"next": "9.3.4",
"next-redux-wrapper": "^5.0.0",
"nonce": "^1.0.4",
"query-string": "^6.11.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"shopify-hmac-validation": "^1.0.4",
"uuid": "^7.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.6",
"@types/react": "^16.9.27",
"babel-eslint": "^10.1.0",
"cross-env": "^5.2.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"jest": "^25.2.4",
"ngrok": "^3.2.7",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}