forked from zpratt/webapp-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.73 KB
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
{
"name": "webapp-workshop",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"codeceptjs": "codeceptjs run --steps",
"codeceptjs:headless": "HEADLESS=true codeceptjs run --steps",
"codeceptjs:ui": "codecept-ui --app",
"test:integration": "npm run build && concurrently -s first -k \"npm run start\" \"npm run codeceptjs\"",
"test:unit": "jest",
"test": "npm run test:unit && npm run test:integration"
},
"dependencies": {
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@mui/material": "5.11.10",
"eslint": "8.34.0",
"eslint-config-next": "13.2.1",
"next": "13.2.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@codeceptjs/configure": "^0.10.0",
"@codeceptjs/examples": "^1.2.1",
"@codeceptjs/ui": "^0.5.0",
"@jest/globals": "29.4.3",
"@testing-library/react": "14.0.0",
"codeceptjs": "^3.4.1",
"concurrently": "7.6.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"msw": "1.1.0",
"playwright": "^1.31.1",
"whatwg-fetch": "3.6.2"
},
"description": "This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).",
"main": "src/pages/index.js",
"keywords": [
"nextjs",
"webapp",
"tutorial"
],
"author": "zach pratt",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zpratt/webapp-workshop.git"
},
"bugs": {
"url": "https://github.com/zpratt/webapp-workshop/issues"
},
"homepage": "https://github.com/zpratt/webapp-workshop#readme"
}