forked from megaptera-kr/frontend-survival-week05
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.92 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "frontend-survival-week05",
"version": "1.0.0",
"description": "프론트엔드 생존코스 5주차 과제",
"source": "index.html",
"scripts": {
"start": "parcel --port 8080",
"build": "parcel build --no-source-maps",
"server": "cd express-app && npx ts-node app.ts",
"serve": "servor dist index.html 8080 --reload",
"check": "tsc --noEmit",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"test": "jest",
"coverage": "jest --coverage --coverage-reporters html",
"watch:test": "jest --watchAll",
"codeceptjs": "codeceptjs run --steps",
"codeceptjs:headless": "HEADLESS=true codeceptjs run --steps",
"codeceptjs:ui": "codecept-ui --app",
"ci": "concurrently -s first -k 'npm run server' 'npm run serve' 'sleep 3 && npm run codeceptjs'"
},
"author": "seedwhale",
"license": "ISC",
"devDependencies": {
"@codeceptjs/configure": "^0.10.0",
"@codeceptjs/ui": "^0.4.7",
"@swc/core": "^1.3.35",
"@swc/jest": "^0.2.24",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"codeceptjs": "^3.4.0",
"concurrently": "^7.6.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-codeceptjs": "^1.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"msw": "^1.2.0",
"parcel": "^2.8.3",
"playwright": "^1.30.0",
"process": "^0.11.10",
"servor": "^4.0.2",
"typescript": "^4.9.5",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"usehooks-ts": "^2.9.1"
}
}