-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
42 lines (42 loc) · 823 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
34
35
36
37
38
39
40
41
42
{
"name": "nextjs-chrome-extension",
"private": true,
"scripts": {
"dev": "npm-watch",
"build": "next build && next export && npm run lint:build",
"lint:build": "mv out/_next out/assets && gsed -i 's/\\/_next/\\/assets/g' out/**.html",
"lint": "next lint"
},
"dependencies": {
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"npm-watch": "^0.11.0"
},
"watch": {
"build": {
"patterns": [
".",
"styles/**",
"pages/**",
"public/**"
],
"ignore": [
"out",
"node_modules",
".next"
],
"extensions": [
"js",
"json",
"lock",
"tsx",
"ts"
]
}
}
}