-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.52 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": "qualtrics-drag-matrix",
"version": "0.1.0",
"description": "calendar component",
"main": "index.tsx",
"scripts": {
"start": "webpack serve -c webpack.dev.js --open",
"build": "webpack -c webpack.prod.js && node ./license/exportStatements",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"qualtrics",
"calendar"
],
"author": "keita-makino",
"license": "MIT",
"dependencies": {
"@mui/material": "^5.12.1",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.21.4",
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.4",
"@types/node": "18.16.0",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"babel-eslint": "10.1.0",
"babel-loader": "9.1.2",
"compression-webpack-plugin": "10.0.0",
"core-js": "3.30.1",
"css-loader": "6.7.3",
"dragselect": "^2.7.4",
"eslint": "8.39.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"html-webpack-plugin": "5.5.1",
"husky": "8.0.3",
"license-checker": "25.0.1",
"lint-staged": "13.2.1",
"prettier": "2.8.8",
"process": "^0.11.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use": "^17.4.0",
"style-loader": "3.3.2",
"terser-webpack-plugin": "^5.3.7",
"ts-loader": "^9.4.2",
"typescript": "5.0.4",
"webpack": "5.80.0",
"webpack-bundle-analyzer": "4.8.0",
"webpack-cli": "5.0.2",
"webpack-dev-server": "4.13.3"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": [
"lint-staged && node license/exportStatements && git add license/."
]
}
},
"lint-staged": {
"./!(dist)/*.{js,ts,jsx,tsx}": [
"eslint"
],
"./!(dist)/*.{js,ts,jsx,tsx,json,md}": [
"prettier --write",
"git add"
]
}
}