-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "pinboard-client",
"version": "0.1.0",
"author": "Brendan Murty <[email protected]> (https://murty.au/)",
"description": "An alternative front-end for the Pinboard bookmarking service.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/brendanmurty/pinboard-react-client"
},
"license": "SEE LICENSE IN license.md",
"dependencies": {
"acorn": "^8.12.1",
"cors": "^2.8.5",
"@craco/craco": "^7.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"minimist": "^1.2.8",
"node-pinboard": "^2.0.1",
"nth-check": "^2.1.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-router-dom": "^6.26.0",
"react-scripts": "^5.0.1",
"web-vitals": "^4.2.3"
},
"scripts": {
"build": "craco build",
"install-clean": "rm -rf node_modules && rm package-lock.json && npm install",
"serve": "npm run build & node -r dotenv/config src/server.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}