-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "portfolio-2022",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"prepush": "npm run lint && npm run lint:style && npm run type && npm run test:e2e",
"start": "next start",
"lint": "next lint",
"lint:style": "stylelint \"**/*.scss\"",
"test:e2e": "playwright test",
"type": "tsc --noEmit"
},
"dependencies": {
"classnames": "2.3.2",
"next": "^14.1.0",
"p5": "1.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-focus-lock": "^2.9.6",
"react-p5": "1.3.30",
"sass": "1.55.0"
},
"devDependencies": {
"@playwright/test": "^1.41.2",
"@types/node": "18.8.0",
"@types/p5": "1.3.3",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "4.8.4"
}
}