-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.41 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
67
68
69
70
71
72
73
74
{
"name": "platform",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "cross-env ANALYZE=true yarn build",
"setup": "npx rimraf node_modules && yarn install --frozen-lockfile",
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint --dir __tests__ --dir api --dir components --dir constants --dir hooks --dir interfaces --dir pages --dir redux --dir styles --dir utils",
"fix": "next lint --fix --dir __tests__ --dir api --dir components --dir constants --dir hooks --dir interfaces --dir pages --dir redux --dir styles --dir utils",
"test": "jest",
"pre-commit": "lint-staged",
"prepare": "husky install",
"env-types": "gen-env-types .env.development -o @types/env.d.ts -e ."
},
"dependencies": {
"@metamask/detect-provider": "1.2.0",
"antd": "^4.16.10",
"babel-plugin-transform-remove-console": "6.9.4",
"bignumber.js": "9.0.1",
"bootstrap": "4.5.3",
"dotenv": "^10.0.0",
"next": "^11.1.1",
"next-redux-wrapper": "6.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "4.1.0",
"react-lottie-player": "^1.3.3",
"react-redux": "7.2.2",
"reactstrap": "8.7.1",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.8",
"redux-saga": "1.1.3",
"secretjs": "0.17.5",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@next/bundle-analyzer": "11.0.1",
"@testing-library/dom": "8.1.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@testing-library/user-event": "13.1.9",
"@types/babel-generator": "6.25.3",
"@types/jest": "26.0.23",
"@types/lodash.isempty": "4.4.0",
"@types/node": "16.0.0",
"@types/react": "17.0.0",
"@types/react-redux": "7.1.16",
"@types/styled-components": "^5.1.11",
"@types/superagent": "4.1.12",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"babel-jest": "27.0.6",
"babel-plugin-styled-components": "1.12.0",
"cross-env": "7.0.3",
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "7.1.0",
"gen-env-types": "1.3.0",
"husky": "6.0.0",
"jest": "27.0.6",
"lint-staged": "11.0.0",
"prettier": "2.3.2",
"typescript": "4.3.5"
},
"engines": {
"node": ">=12.13.0",
"npm": ">=6.9.0"
}
}