-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 4.07 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
{
"name": "petasos",
"description": "",
"version": "1.3.0-beta.1",
"author": "",
"dependencies": {
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@loadable/component": "5.15.2",
"@mui/icons-material": "5.6.2",
"@mui/lab": "5.0.0-alpha.74",
"@mui/material": "5.6.4",
"@mui/x-date-pickers": "5.0.0-alpha.1",
"codejar": "3.6.0",
"copy-to-clipboard": "3.3.1",
"formik": "2.2.9",
"formik-mui": "4.0.0-alpha.3",
"highlight.js": "11.5.1",
"mobx": "5.15.7",
"mobx-react-lite": "1.5.2",
"mobx-task": "2.0.1",
"mobx-utils": "5.6.2",
"moment": "2.29.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-json-tree": "0.16.2",
"react-router-dom": "6.8.1",
"semantic-release": "19.0.3",
"url-join": "5.0.0"
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.18.6",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-decorators": "7.17.9",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/plugin-proposal-optional-chaining": "7.16.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.17.10",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.5",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.4",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/html-webpack-plugin": "3.2.6",
"@types/loadable__component": "5.13.4",
"@types/node": "17.0.31",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/react-helmet": "6.1.5",
"@types/react-router-dom": "5.3.3",
"@types/webpack-dev-server": "4.7.2",
"@types/webpack-env": "1.16.4",
"@types/webpack-merge": "5.0.0",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"babel-loader": "8.2.5",
"babel-runtime": "6.26.0",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.1",
"dotenv": "16.0.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"file-loader": "6.2.0",
"fork-ts-checker-webpack-plugin": "7.2.11",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.3",
"image-webpack-loader": "8.1.0",
"lint-staged": "13.2.2",
"moment-locales-webpack-plugin": "1.2.0",
"prettier": "2.6.2",
"react-refresh": "0.13.0",
"rimraf": "3.0.2",
"style-loader": "3.3.1",
"ts-node": "10.7.0",
"type-fest": "2.12.2",
"typescript": "4.6.4",
"webpack": "5.76.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.0",
"webpack-merge": "5.8.0",
"zip-webpack-plugin": "4.0.1"
},
"license": "ISC",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config=configs/webpack/prod.ts",
"clean-dist": "rimraf dist",
"env": "chmod +x ./env.sh && ./env.sh",
"lint": "eslint './src/**/*.ts*' --fix",
"postclean-dist": "npm run env",
"prebuild": "npm run clean-dist",
"prepack": "npm run build",
"prestart": "npm run clean-dist",
"semantic-release": "semantic-release",
"start": "npm run start-dev",
"start-dev": "webpack serve --config=configs/webpack/dev.ts",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --cache --fix",
"*.{ts,tsx,js,jsx,json,md}": "prettier --write"
}
}