-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 745 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 745 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
30
{
"name": "code-trainer-next",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"lint-fix": "next lint --fix",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"next": "12.0.9",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@types/node": "16.11.11",
"@types/react": "17.0.37",
"@types/react-test-renderer": "17.0.1",
"@typescript-eslint/eslint-plugin": "5.5.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"jest": "27.4.4",
"react-test-renderer": "17.0.2",
"typescript": "4.5.2"
}
}