-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.84 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "saleor-alt-storefront",
"displayName": "Saleor Alt Storefront",
"author": {
"name": "Khalifa Lame",
"email": "[email protected]"
},
"license": "MIT",
"private": true,
"version": "0.0.1",
"scripts": {
"analyze": "cross-env ANALYZE=1 umi build",
"start": "umi dev",
"start:no-mock": "cross-env MOCK=none umi dev",
"start:no-ui": "cross-env UMI_UI=none umi dev",
"build": "umi build",
"build:local": "cross-env UMI_ENV=local umi build",
"build:ci": "cross-env UMI_ENV=ci umi build",
"build:prod": "cross-env UMI_ENV=prod umi build",
"serve": "serve -s ./dist",
"build-serve": "npm-run-all --serial build serve",
"codegen": "apollo client:codegen --target=typescript types --globalTypesFile=src/globalTypes.ts",
"codegen:watch": "npm run codegen -- --watch",
"prettier": "prettier --write src/**/*.{js,jsx,tsx,ts,less,md,json}",
"test": "umi-test",
"test-e2e:no-build": "testcafe 'chrome:headless' -c 4 src/**/*.e2e.ts --skip-js-errors",
"test-e2e": "npm-run-all --serial build:ci test-e2e:no-build",
"test:coverage": "umi-test --coverage",
"test:watch": "umi-test --watch"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/icons": "^4.0.6",
"@apollo/client": "^3.2.0",
"@sentry/browser": "^5.26.0",
"@umijs/hooks": "^1.9.2",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.0.14",
"antd": "^4.7.3",
"apollo-link-logger": "^1.2.3",
"apollo-link-retry": "^2.2.16",
"apollo-link-token-refresh": "^0.3.2",
"apollo-upload-client": "^14.1.2",
"classnames": "^2.2.6",
"countries-list": "^2.5.4",
"dompurify": "^2.0.8",
"draftjs-to-html": "^0.9.1",
"dva-logger": "^1.0.0",
"graphql": "^15.3.0",
"jwt-decode": "^2.2.0",
"libphonenumber-js": "^1.7.51",
"localforage": "^1.9.0",
"lodash": "^4.17.20",
"meilisearch": "^0.16.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-infinite-scroller": "^1.2.4",
"react-lazyload": "^2.6.6",
"react-truncate-html": "^0.1.7",
"register-service-worker": "^1.7.1",
"tailwindcss": "^1.9.6",
"umi": "^3.2.23",
"yorkie": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"antd-dayjs-webpack-plugin": "^1.0.0",
"apollo": "^2.30.3",
"core-js": "^3.6.4",
"cross-env": "^7.0.2",
"hint": "^6.1.0",
"html-critical-webpack-plugin": "^2.1.0",
"import-sort-cli": "^6.0.0",
"lint-staged": "^10.3.0",
"npm-run-all": "^4.1.5",
"serve": "^11.3.0",
"testcafe": "1.8.4",
"typescript": "^3.8.3",
"workbox-webpack-plugin": "^5.1.4"
}
}