-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.71 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.71 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@emotion/jest": "^11.10.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"babel-jest": "^29.1.2",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^5.0.0",
"codeceptjs": "^3.3.6",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"jest-plugin-context": "^2.9.0",
"puppeteer": "^19.2.0",
"redux-mock-store": "^1.5.4",
"start-server-and-test": "^1.14.0",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"name": "shopifystore",
"description": "",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/css": "^11.10.0",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reduxjs/toolkit": "^1.8.6",
"emotion-reset": "^3.0.1",
"given2": "^2.1.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^7.2.4",
"react-router-dom": "^6.4.3",
"redux": "^4.1.0",
"redux-thunk": "^2.4.1",
"uuid": "^9.0.0"
},
"scripts": {
"start": "webpack serve --mode development",
"test:unit": "jest",
"coverage": "npm run test:unit -- --coverage",
"test:e2e": "codeceptjs run --steps",
"test": "npm run coverage && start-server-and-test start http://localhost:8080 test:e2e",
"lint": "eslint --ext js,jsx .",
"ci": "start-server-and-test start http://localhost:8080 test:e2e",
"build": "webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xunxee/shopifyStore.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/xunxee/shopifyStore/issues"
},
"homepage": "https://github.com/xunxee/shopifyStore#readme"
}