-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"private": true,
"scripts": {
"build": "next build",
"debug": "NODE_OPTIONS='--inspect' next dev",
"dev": "next dev",
"dev:kill": "kill -9 $(lsof -ti:3000)",
"lint": "next lint",
"playwright:install": "npx playwright install chromium",
"prettier": "prettier --write \"{__tests__,components,pages}/**/*.{js,json,css}\" && prettier --write \"{run_e2e_tests,server}.js\"",
"start": "next start",
"test:e2e": "playwright test --config=playwright.config.js"
},
"dependencies": {
"@js-temporal/polyfill": "^0.3.0",
"@playwright/test": "^1.17.1",
"history": "^5.2.0",
"jsurl2": "^2.1.0",
"playwright-aws-lambda": "^0.7.0",
"playwright-core": "^1.17.1",
"prism-react-renderer": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-virtualized-auto-sizer": "^1.0.6",
"scheduler": "^0.0.0-experimental-42c30e8b1-20220104",
"sharp": "^0.29.3",
"swr": "^1.0.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.7",
"btoa": "^1.2.1",
"eslint": "^8.6.0",
"eslint-config-next": "12.0.7",
"next": "latest",
"prettier": "^2.5.1"
}
}