-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.68 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "opensea-website-template",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"start": "next start",
"test": "jest",
"tsc": "tsc --noEmit"
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.jest.json"
}
},
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@types/react": "^17.0.0",
"@types/styletron-engine-atomic": "^1.1.0",
"@types/styletron-react": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"@walletconnect/web3-provider": "^1.4.1",
"baseui": "^9.116.0",
"bignumber.js": "^9.0.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"next": "^10.0.3",
"nprogress": "^0.2.0",
"opensea-js": "^2.0.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"react-sizeme": "^3.0.1",
"react-social-icons": "^5.3.0",
"react-stack-grid": "^0.7.1",
"react-viewer": "^3.2.2",
"styletron-engine-atomic": "^1.1.2",
"styletron-react": "^5.0.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"use-dark-mode": "^2.3.1",
"web3": "^1.3.4",
"web3modal": "^1.9.3"
}
}