-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "next-foundation",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"stylelint": "stylelint \"**/*.scss\"",
"test": "playwright test",
"test:debug": "playwright test --headed",
"test:report": "playwright show-report"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"@material-design-icons/font": "^0.14.8",
"@vercel/analytics": "^1.2.2",
"classnames": "^2.3.2",
"gsap": "^3.11.5",
"next": "^13.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"scss-partials": "^1.4.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.2.4",
"@playwright/test": "^1.30.0",
"@types/node": "20.2.3",
"@types/react": "18.2.0",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.32.0",
"eslint-config-pixel": "^1.4.1",
"postcss": "^8.4.23",
"sass": "^1.57.1",
"stylelint": "^15.3.0",
"tailwindcss": "^3.3.2",
"typescript": "4.9.5"
},
"eslintConfig": {
"extends": [
"pixel",
"plugin:@next/next/recommended"
]
},
"prettier": "eslint-config-pixel/prettier"
}