-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
116 lines (116 loc) · 3.94 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "nextjs-concept",
"version": "2.5.0",
"scripts": {
"dev": "cross-env NODE_OPTIONS=\"-r esm\" next -p 3333",
"build": "cross-env NODE_OPTIONS=\"-r esm\" next build",
"test": "npm run test:ci",
"test:dev": "npm run test:types && npm run test:eslint && jest --watch",
"test:ci": "npm run test:types && npm run test:eslint && jest",
"test:coverage": "npm run test:types && npm run test:eslint && jest --coverage; xdg-open coverage/lcov-report/index.html",
"test:types": "tsc --noEmit",
"test:eslint": "eslint --ext .ts,.tsx ./src",
"type-check:watch": "npm run test:types -- --watch",
"analyze": "cross-env-shell NODE_OPTIONS=\"-r esm\" ANALYZE=true next build",
"deploy": "yarn && yarn build && pm2 reload ecosystem.config.js",
"start": "next start -p 3000",
"release": "standard-version",
"release:pre": "npm run release -- --prerelease",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@ant-design/icons": "^4.6.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@storybook/react": "^6.2.6",
"@svgr/webpack": "^5.4.0",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.0.3",
"@testing-library/user-event": "^12.7.1",
"antd": "4.16.13",
"axios": "^0.21.1",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"classnames": "^2.2.6",
"cross-env": "^7.0.2",
"csstype": "2.6.0",
"esm": "^3.2.25",
"formik": "^2.1.4",
"get-local-ident": "^1.0.0",
"husky": "^4.3.6",
"lodash": "^4.17.15",
"moment": "2.27.0",
"next": "11.1.2",
"nprogress": "^0.2.0",
"null-loader": "4.0.0",
"path-to-regexp": "^6.2.0",
"prop-types": "^15.7.2",
"query-string": "^6.13.1",
"quill": "^1.3.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-lazyload": "^3.2.0",
"react-media": "^1.10.0",
"react-query": "^3.3.0",
"react-quill": "^1.3.5",
"react-syntax-highlighter": "^15.4.3",
"react-table-6": "^6.11.0",
"react-table-hoc-fixed-columns": "^2.3.3",
"sass": "^1.41.1",
"storybook-formik": "^2.1.2",
"webpack-filter-warnings-plugin": "^1.2.1",
"yup": "^0.29.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@storybook/addon-actions": "^6.2.6",
"@storybook/addon-essentials": "^6.2.6",
"@storybook/addon-links": "^6.2.6",
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.9",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.159",
"@types/node": "^14.0.6",
"@types/react": "^16.9.35",
"@types/react-lazyload": "^3.1.0",
"@types/react-table": "^7.0.25",
"@types/yup": "^0.29.4",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-module-resolver": "^0.17.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^4.0.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"next-plugin-antd-less": "^1.4.3",
"prettier": "^1.19.1",
"standard-version": "^9.0.0",
"storybook-addon-react-docgen": "^1.2.42",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=10.x"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "ISC"
}