forked from datasketch/frontend-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 658 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 658 Bytes
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
{
"name": "frontend-coding-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"api": "json-server --watch db.json --port 3001",
"dev": "conc \"next dev\" \"npm run api\"",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"json-server": "^0.17.1",
"mongoose": "^6.9.1",
"next": "^12.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sweetalert2": "^11.7.1"
},
"devDependencies": {
"concurrently": "^7.6.0",
"eslint": "8.29.0",
"eslint-config-next": "13.0.6"
}
}