-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
{
"name": "project-ephemeris",
"version": "1.0.0",
"private": true,
"description": "Source code for Project Ephemeris",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maxpatiiuk/project-ephemeris"
},
"scripts": {
"build": "next build",
"debug": "NODE_OPTIONS='--inspect' next dev",
"dev": "next dev",
"start": "next start"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.7",
"mysql2": "^3.6.5",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-draggable": "^4.4.6",
"tailwindcss": "^3.4.0",
"typesafe-reducer": "^1.0.4"
},
"devDependencies": {
"@maxxxxxdlp/eslint-config": "^5.0.0",
"@maxxxxxdlp/stylelint-config": "^1.0.0",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/react-modal": "^3.16.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"postcss": "^8.4.32",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.1.1",
"stylelint": "^16.1.0",
"typescript": "^5.3.3"
},
"browserslist": {
"production": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}