This repository has been archived by the owner on Nov 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.44 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
{
"name": "akasha-id-web-new",
"version": "0.1.0",
"private": true,
"dependencies": {
"@akashaproject/design-system": "git+https://254d43649b9e5320546a5d92fff31892d41b0c0b@github.com/AkashaProject/akasha-design-system.git#notification_component",
"@trendmicro/react-popover": "^0.4.0",
"akasha-id-wallet": "git+https://254d43649b9e5320546a5d92fff31892d41b0c0b@github.com/AkashaProject/akasha-id-wallet.git",
"grommet": "^2.7.11",
"grommet-icons": "^4.3.0",
"i18next": "^19.0.0",
"i18next-browser-languagedetector": "^4.0.1",
"i18next-xhr-backend": "^3.2.2",
"jsqr": "^1.2.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-i18next": "^11.1.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.1.1",
"redux": "^4.0.4",
"redux-form": "^8.2.6",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.1",
"styled-components": "^4.4.0",
"typescript": "3.5.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"tslint": "tslint --project tsconfig.json -c tslint.json --format verbose",
"tslint-fix": "tslint --project tsconfig.json -c tslint.json --fix --format verbose"
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"{src}/**/*.{ts,tsx}": [
"npm run tslint",
"prettier --write",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/history": "^4.7.3",
"@types/jest": "^24.0.19",
"@types/node": "^12.11.6",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^4.3.5",
"@types/redux": "^3.6.0",
"@types/redux-form": "^8.1.9",
"@types/redux-logger": "^3.0.7",
"@types/styled-components": "^4.1.19",
"eslint": "^6.5.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.1.0"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/@akashaproject/.*"
]
}
}