-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.9 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "demetergift",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "npx webpack serve --mode development --config webpack.config.ts",
"build": "npx webpack --mode development --config webpack.config.ts",
"dev": "npx webpack serve --mode development --config webpack.config.ts",
"lint": "npx eslint src --ext js,jsx,ts,tsx",
"deploy": "cd contracts && hardhat deploy --network metis"
},
"dependencies": {
"@broxus/await-semaphore": "^0.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.8.0",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.uniqby": "^4.7.6",
"@types/luxon": "^1.27.1",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"axios": "^0.25.0",
"bignumber.js": "^9.0.1",
"classnames": "^2.3.1",
"dotenv": "^16.0.3",
"fp-ts": "^2.11.1",
"hardhat": "^2.12.2",
"hardhat-deploy": "^0.11.20",
"https": "^1.0.0",
"lightweight-charts": "^3.5.0",
"lodash.isequal": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"luxon": "^2.0.2",
"mobx": "^6.3.2",
"mobx-react-lite": "^3.2.0",
"net": "^1.0.2",
"next": "^12.0.8",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-bootstrap": "^2.1.1",
"react-dom": "^17.0.2",
"react-intl": "^5.20.9",
"react-router-dom": "^5.2.0",
"react-waypoint": "^10.1.0",
"ton-inpage-provider": "^0.1.18"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.3",
"@types/copy-webpack-plugin": "^8.0.1",
"@types/eslint": "^7.28.0",
"@types/file-loader": "^5.0.1",
"@types/html-webpack-plugin": "^3.2.6",
"@types/mini-css-extract-plugin": "^1.4.3",
"@types/node": "^16.6.1",
"@types/sass": "^1.16.1",
"@types/sass-loader": "^8.0.2",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.11.5",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^3.5.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.1.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"locklift": "^2.4.4",
"mini-css-extract-plugin": "^2.2.0",
"path": "^0.12.7",
"sass": "^1.38.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"ts-node": "^10.6.0",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"webpack": "^5.50.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --format=codeframe"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
}
}