generated from jimmychu0807/substrate-front-end-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
111 lines (111 loc) · 3.04 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": "crowdloan",
"version": "0.1.1",
"private": true,
"author": "Integritee AG",
"license": "Unlicense",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "CI=true react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject",
"lint": "eslint src/**/*.js",
"lint:ci": "eslint src/**/*.js --max-warnings=0",
"lint:fix": "eslint --fix src/**/*.js",
"deploy": "gh-pages -d build -m '[ci skip] Updates'"
},
"dependencies": {
"@polkadot/api": "^6.4.2",
"@polkadot/extension-dapp": "^0.40.3",
"@polkadot/keyring": "^7.4.1",
"@polkadot/networks": "^7.4.1",
"@polkadot/types": "^6.3.1",
"@polkadot/ui-keyring": "^0.85.4",
"@polkadot/ui-settings": "^0.85.4",
"@polkadot/util": "^7.4.1",
"@polkadot/util-crypto": "^7.4.1",
"base-x": "^3.0.6",
"buffer": "^6.0.3",
"emailjs-com": "^3.2.0",
"eslint-config-react-app": "^6.0.0",
"highcharts": "^9.1.2",
"highcharts-react-official": "^3.0.0",
"prop-types": "^15.7.2",
"query-string": "^6.13.5",
"react": "^16.14.0",
"react-app": "^1.1.2",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^16.14.0",
"react-h5-video": "^1.0.4",
"react-hooks-global-state": "^1.0.2",
"react-icons": "^4.2.0",
"react-player": "^2.9.0",
"react-scripts": "^4.0.3",
"react-scroll": "^1.8.2",
"react-simple-video-player": "^1.0.0",
"react-slick": "^0.28.1",
"react-toastify": "^7.0.4",
"referral-code-generator": "^1.0.8",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"validator": "^13.6.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"babel-preset-env": "^1.7.0",
"eslint": "^7.20.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^3.1.0",
"react-app-rewired": "^2.1.8",
"semistandard": "^16.0.0"
},
"eslintConfig": {
"extends": [
"react-app",
"semistandard"
],
"plugins": [
"only-warn"
]
},
"engines": {
"node": ">=12",
"npm": ">=6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "https://crowdloan.integritee.network",
"bugs": {
"url": "https://github.com/integritee-network/crowdloan/issues"
},
"keywords": [
"substrate",
"substrate-ui",
"polkadot-js"
],
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/src/__tests__/mock.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/src/__tests__/mock.js"
}
}
}