-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.08 KB
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
49
50
{
"name": "shop-list",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm-watch",
"lint:build": "mv out/_next out/assets && gsed -i 's/\\/_next/\\/assets/g' out/**.html",
"build": "next build && next export && npm run lint:build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.3",
"@notionhq/client": "^2.2.4",
"@types/chrome": "^0.0.235",
"eslint": "8.39.0",
"eslint-config-next": "13.3.4",
"firebase": "^9.22.0",
"next": "13.3.4",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"npm-watch": "^0.11.0"
},
"watch": {
"build": {
"patterns": [
"styles/**",
"pages/**",
"public/**",
"helpers/**",
"next.config.js"
],
"ignore": [
"out",
"node_modules",
".next",
".vscode"
],
"extensions": [
"js",
"json"
]
}
}
}