-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.99 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
117
118
119
120
121
{
"name": "fortress",
"version": "1.0.1",
"scripts": {
"dev": "next",
"build": "next build",
"analyze": "ANALYZE=true yarn build",
"start": "next start",
"test": "jest",
"test:ci": "jest --env=jsdom --coverage --watchAll=false --maxWorkers=2",
"format": "prettier -c --write \"*/**\"",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook",
"lint": "eslint . --ext .ts,.tsx,.js && stylelint '**/*.css'",
"lint:fix": "eslint . --ext .ts,.tsx,.js --fix && stylelint '**/*.css' --fix",
"postinstall": "chmod +x ./node_modules/husky/lib/bin.js && husky install",
"fetch-definitions": "swagger-typescript-api --no-client -p https://develop-api.fortress.d.foundation/swagger/doc.json -o ./src/types -n schema.ts",
"release": "standard-version -a"
},
"dependencies": {
"@dwarvesf/react-hooks": "^0.7.0",
"@dwarvesf/react-utils": "^0.4.1",
"@iconify/react": "^4.0.1",
"@react-oauth/google": "^0.4.0",
"@types/lodash.debounce": "^4.0.7",
"@types/uuid": "^8.3.4",
"antd": "^4.23.6",
"classnames": "^2.3.2",
"isomorphic-unfetch": "^3.1.0",
"lodash.debounce": "^4.0.8",
"next": "12.3.1",
"nprogress": "^0.2.0",
"qs": "^6.11.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-inlinesvg": "^3.0.1",
"react-number-format": "^5.1.3",
"react-phone-input-2": "^2.15.1",
"recharts": "^2.2.0",
"styled-components": "^5.3.6",
"swr": "^1.3.0"
},
"devDependencies": {
"@babel/helper-plugin-utils": "^7.19.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@dwarvesf/react-eslint-config": "^0.1.3",
"@netlify/plugin-nextjs": "^4.28.4",
"@prettier/plugin-xml": "^2.2.0",
"@storybook/addon-essentials": "6.4.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-storysource": "6.4.19",
"@storybook/react": "6.4.19",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.1.2",
"@types/node": "18.8.4",
"@types/nprogress": "^0.2.0",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"autoprefixer": "^10.4.12",
"babel-eslint": "10.x",
"babel-jest": "^29.1.2",
"babel-plugin-import": "^1.13.5",
"dotenv": "^16.0.3",
"eslint": "8.25.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "8.5.0",
"eslint-config-react": "1.x",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.7.2",
"husky": "^8.0.1",
"jest": "^29.1.2",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.1.2",
"lint-staged": "^13.0.3",
"netlify-cli": "^12.0.11",
"next-plugin-antd-less": "^1.8.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"storybook-addon-customize-antd-theme": "^1.1.0",
"storybook-addon-next-router": "3.1.1",
"storybook-addon-styled-component-theme": "^2.0.0",
"stylelint": "^14.13.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^28.0.0",
"swagger-typescript-api": "^10.0.1",
"ts-jest": "^29.0.3",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "4.8.4"
},
"license": "ISC",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{json,css,scss,md}": [
"prettier --write"
],
"**/*.css": "stylelint --fix",
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}