-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
51
52
53
54
55
{
"name": "notion-bookmarks",
"private": true,
"scripts": {
"dev": "next dev",
"dev-extension": "npm-watch",
"lint": "next lint --no-error-on-unmatched-pattern",
"lint:build": "mv out/_next out/assets && sed -i 's/\\/_next/\\/assets/g' out/**.html",
"analyze": "next build --analyze",
"build": "next build && next export && npm run lint:build",
"start": "next start",
"format-check": "prettier --check \"**/*.js\"",
"format": "prettier --write \"**/*.js\""
},
"dependencies": {
"@notionhq/client": "^0.4.13",
"bootstrap": "^4.6.1",
"next": "12.0.7",
"node-sass": "^5.0.0",
"react": "17.0.2",
"react-bootstrap": "^1.6.4",
"react-dom": "17.0.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^11.1.3",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"npm-watch": "^0.11.0",
"prettier": "2.5.1"
},
"watch": {
"build": {
"patterns": [
"styles/**",
"pages/**",
"public/**",
"helpers/**",
"next.config.js"
],
"ignore": [
"out",
"node_modules",
".next",
".vscode"
],
"extensions": [
"js",
"json"
]
}
}
}