This repository has been archived by the owner on Aug 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
65 lines (65 loc) · 1.66 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
{
"name": "learn-scilla",
"keywords": [
"scilla",
"smart contract",
"zilliqa",
"blockchain"
],
"version": "0.1.0",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:cov": "react-scripts test --coverage",
"test:ci": "CI=true react-scripts test --coverage",
"eject": "react-scripts eject",
"prettier": "prettier \"**/*.+(ts|tsx|css)\"",
"format": "npm run prettier -- --write",
"validate": "npm run prettier -- --list-different && yarn test:ci && tsc --noEmit"
},
"dependencies": {
"@testing-library/react": "^10.0.1",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.6",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.15.1",
"husky": "^3.0.9",
"jest-styled-components": "^6.3.1",
"prettier": "^1.18.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-ga": "^2.6.0",
"react-helmet": "^5.2.1",
"react-icons": "^3.8.0",
"react-markdown": "^4.2.2",
"react-monaco-editor": "0.25.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.2.0",
"react-test-renderer": "^16.11.0",
"styled-components": "^4.3.2",
"typescript": "^3.4.5"
},
"jest": {
"collectCoverageFrom": [
"src/components/**/*.{ts,tsx}"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn validate && yarn test:ci"
}
},
"license": "GPL-3.0",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}