forked from Zilliqa/learn-scilla
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.85 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
{
"name": "learn-scilla",
"keywords": [
"smart contract",
"blockchain"
],
"homepage": "https://neopepes.com",
"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": "react-scripts test --coverage",
"eject": "react-scripts eject",
"prettier": "prettier \"**/*.+(ts|tsx|css)\"",
"format": "npm run prettier -- --write",
"validate": "npm run prettier -- --list-different && tsc --noEmit",
"ci": "yarn test:ci"
},
"dependencies": {
"@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.12.1",
"husky": "^2.2.0",
"i18next": "^12.1.0",
"jest-styled-components": "^6.3.1",
"prettier": "^1.18.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-fn-components": "^0.0.1",
"react-ga": "^2.6.0",
"react-helmet": "^5.2.1",
"react-i18next": "8.3.8",
"react-icons": "^3.7.0",
"react-markdown": "^4.1.0",
"react-monaco-editor": "0.25.1",
"react-redux": "^5.1.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.1.1",
"react-test-renderer": "^16.8.6",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"styled-components": "^4.3.2",
"typescript": "^3.4.5"
},
"jest": {
"collectCoverageFrom": [
"src/components/**/*.{ts,tsx}"
]
},
"repository": "https://github.com/noelyoo/learn-scilla",
"author": "Noel Yoo <[email protected]>",
"license": "GPL-3.0",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}