-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "sme-public-profile-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "react-env --path .env.development --prefix PUBLIC_VAR --dest ./public/env -- next dev",
"dev-staging": "react-env --path .env.dev-staging --prefix PUBLIC_VAR --dest ./public/env -- next dev",
"build": "touch ./public/env/__ENV.js && next build",
"start": "react-env --prefix PUBLIC_VAR --dest ./public/env -- next start",
"lint": "next lint",
"format": "prettier --write \"*.json\" \".prettierrc\" \"src/**/*.tsx\" \"src/**/*.ts\"",
"postinstall": "[ -d '.husky' ] && husky install || true"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"yarn run format"
]
},
"dependencies": {
"@beam-australia/react-env": "^3.1.1",
"@normative/theme": "1.4.0",
"@svgr/webpack": "^6.2.1",
"antd": "^4.19.3",
"axios": "^0.26.1",
"chart.js": "^3.7.1",
"classnames": "^2.3.1",
"next": "^12.1.0",
"react": "^17.0.2",
"react-chartjs-2": "^4.0.1",
"react-dom": "^17.0.2",
"react-modal": "^3.14.4",
"sharp": "^0.30.3"
},
"devDependencies": {
"@types/node": "^14",
"@types/react": "^17.0.43",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-next": "^12.1.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"sass": "^1.49.11",
"typescript": "^4.6.3"
},
"packageManager": "[email protected]"
}