-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1015 Bytes
/
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
{
"name": "chrome-extension-template-with-nextjs",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"bundle": "webpack build --mode production --config ./webpack/webpack.config.cjs",
"export": "next build && pnpm run bundle"
},
"dependencies": {
"next": "^14.2.4",
"react": "^18.3.1",
"react-dom": "~18.3.1",
"react-error-boundary": "^4.0.13"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"autoprefixer": "^10.4.19",
"eslint": "^9.6.0",
"eslint-config-next": "^14.2.4",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}