-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
66
67
{
"name": "simpify",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development",
"start": "webpack serve --mode development",
"build": "webpack --mode production",
"test": "jest --passWithNoTests",
"test:f": "yarn test --collectCoverage",
"lint": "yarn eslint .",
"lint:fix": "yarn eslint --fix .",
"cypress:open": "cypress open",
"co": "cypress open"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@testing-library/react-hooks": "^7.0.1",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"cypress": "^8.3.0",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"sass": "^1.38.0",
"sass-loader": "^12.1.0",
"sinon": "^11.1.2",
"style-loader": "^3.2.1",
"supertest": "^6.1.6",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"@apollo/client": "^3.4.8",
"@shopify/app-bridge": "^2.0.3",
"apollo-cache-persist": "^0.1.1",
"apollo-link": "^1.2.14",
"graphql": "^15.5.1",
"informed": "~3.27.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-intl": "^5.20.10",
"react-loadable": "^5.5.0",
"react-router-dom": "^5.2.0",
"uglifyjs-webpack-plugin": "^2.2.0"
},
"description": ""
}