-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "smart-note-client",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"lint:check": "next lint",
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:ci": "jest --coverage --watchAll=false",
"coverage": "jest --coverage",
"type-check": "echo 'TypeScript not configured'"
},
"dependencies": {
"axios": "^1.13.2",
"critters": "^0.0.23",
"easymde": "^2.20.0",
"next": "^14.2.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-force-graph-2d": "^1.29.0",
"react-markdown": "^9.0.1",
"react-simplemde-editor": "^5.2.0",
"swr": "^2.3.7"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"semver": "^7.7.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}