-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) 路 757 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) 路 757 Bytes
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
{
"name": "portfolio_nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS=--openssl-legacy-provider next dev",
"build": "NODE_OPTIONS=--openssl-legacy-provider next build && NODE_OPTIONS=--openssl-legacy-provider next export",
"start": "NODE_OPTIONS=--openssl-legacy-provider next start",
"export": "NODE_OPTIONS=--openssl-legacy-provider next export",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"axios": "^1.4.0",
"next": "10.2.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"styled-components": "^5.3.0",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"prettier": "^3.9.6"
}
}