-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.78 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "lookso",
"version": "0.1.2",
"private": true,
"scripts": {
"dev": "set NEXT_PUBLIC_ENV=development&& next dev -p 3000",
"build": "next build",
"start": "next start",
"build:start:staging": "NEXT_PUBLIC_ENV='staging' next build && NEXT_PUBLIC_ENV='staging' next start -p 3001",
"build:start:prod": "NEXT_PUBLIC_ENV='prod' next build && NEXT_PUBLIC_ENV='prod' next start -p 3000",
"release": "standard-version",
"pre-release": "standard-version --prerelease",
"lint": "eslint \"**/*.{ts,tsx}\"",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --fix",
"format": "prettier --write ./src",
"component:new": "npx generate-react-cli component"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@erc725/erc725.js": "^0.17.2",
"@lukso/lsp-smart-contracts": "^0.10.2",
"@mui/base": "^5.0.0-alpha.93",
"@mui/material": "^5.10.2",
"@mui/system": "^5.10.1",
"@reduxjs/toolkit": "^1.8.3",
"@testing-library/react": "^13.3.0",
"axios": "^0.27.2",
"dotenv": "^16.0.2",
"emoji-picker-react": "^3.6.1",
"next": "12.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.2",
"sass": "^1.54.3",
"web3": "^1.7.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "^28.1.7",
"@types/node": "18.6.1",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.3",
"standard-version": "^9.5.0",
"typescript": "^4.7.4"
}
}