-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 879 Bytes
/
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
{
"name": "the-menu",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"mock-api": "cd mock_api && json-server --watch db.json --port 1337"
},
"dependencies": {
"next": "^10.0.0",
"qrcode": "^1.4.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@testing-library/dom": "^7.24.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/styled-components": "^5.1.3",
"@types/qrcode": "^1.3.5",
"babel-jest": "^26.3.0",
"babel-plugin-styled-components": "^1.11.1",
"jest": "^26.4.2",
"typescript": "^4.0.2"
}
}