This repository was archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.58 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.58 KB
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
{
"name": "kilt-demo-client",
"version": "0.23.0",
"license": "BSD-4-Clause",
"private": true,
"dependencies": {
"@kiltprotocol/sdk-js": "^0.22.0",
"@polkadot/ui-identicon": "^0.33.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.170",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "5.1.7",
"@types/react-select": "^4.0.15",
"@types/react-test-renderer": "^17.0.1",
"compass-mixins": "^0.12.10",
"immutable": "^4.0.0-rc.12",
"react": "^17.0.2",
"react-day-picker": "^7.4.10",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"react-qrcode-logo": "^2.4.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.1.7",
"react-schema-based-json-editor": "^8.2.1",
"react-scripts": "4.0.3",
"react-select": "^4.3.1",
"react-test-renderer": "^17.0.2",
"reselect": "^4.0.0",
"sass": "^1.34.1",
"scrypt-js": "^3.0.1",
"select2-component": "^5.10.4",
"typescript": "^4.1.2",
"utility-types": "^3.4.1",
"web-vitals": "^1.0.1"
},
"scripts": {
"postinstall": "chmod +x ./env.sh",
"prestart": "./env.sh && mv env-config.js ./public/",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write 'src/**/*.{ts,tsx,json}'",
"lint": "eslint 'src/**/*.tsx' 'src/**/*.ts'",
"lint:fix": "yarn lint --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "yarn lint"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,json}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!@polkadot|@babel/runtime/helpers/esm/)"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/config-conventional": "^12.1.4",
"commitlint": "^12.1.4",
"commitlint-cli": "^1.1.3",
"husky": "^4.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1"
}
}