-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "fastcampus-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"docker:start": "docker run -p 3000:3000 fastcampus-site",
"docker": "docker build . -t fastcampus-site"
},
"dependencies": {
"next": "11.1.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/react": "17.0.19",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-jest": "^27.0.6",
"eslint": "7.32.0",
"eslint-config-airbnb-typescript": "^13.0.0",
"eslint-config-next": "11.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"react-test-renderer": "^17.0.2",
"typescript": "4.3.5"
}
}