-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.04 KB
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
{
"name": "nbdime",
"version": "2.1.5",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@jupyterlab/application": "^2 || ^3",
"@jupyterlab/apputils": "^2 || ^3",
"@jupyterlab/cells": "^2 || ^3",
"@jupyterlab/codemirror": "^2 || ^3",
"@jupyterlab/coreutils": "^4 || ^5",
"@jupyterlab/mathjax2": "^2 || ^3",
"@jupyterlab/nbformat": "^2 || ^3",
"@jupyterlab/notebook": "^2 || ^3",
"@jupyterlab/rendermime": "^2 || ^3",
"@jupyterlab/theme-light-extension": "^3.1",
"@lumino/dragdrop": "^1.3.0",
"@lumino/widgets": "^1.6.0",
"axios": "^1.2.1",
"nbdime": "^6.1.2",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.1",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"typescript": "^4.9.4",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@types/lodash.debounce": "^4.0.7",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"autoprefixer": "^10.4.8",
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"eslint-plugin-testing-library": "^5.5.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^12.5.0",
"prettier": "^2.6.2"
},
"scripts": {
"start": "PORT=3003 GENERATE_SOURCEMAP=false react-scripts start",
"dev": "npm run start",
"clean": "rm -rf dist",
"format": "prettier --write \"src/**/*.ts*\"",
"build": "BUILD_PATH='./dist' react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"check-types": "tsc --noEmit --pretty",
"prettier": "prettier --write \"./src/**/*.{ts,js}\"",
"prepare": "is-ci || husky install",
"serve": "serve ./dist"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}