This repository was archived by the owner on Oct 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.88 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
{
"name": "memoire-webclient",
"description": "Web client for Memoire app (React SPA). Memoire is an online journal where users can pen down their thoughts and feelings.",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/jest": "24.0.11",
"@types/jwt-decode": "^2.2.0",
"@types/node": "11.13.5",
"@types/react": "16.8.13",
"@types/react-dom": "16.8.4",
"axios": "^0.19.0",
"connected-react-router": "^6.5.2",
"jwt-decode": "^2.2.0",
"react": "^16.8.6",
"react-app-polyfill": "^0.2.2",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8",
"react-toastify": "^5.1.0",
"react-transition-group": "^4.0.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.0.5",
"typesafe-actions": "^4.4.2",
"typescript": "3.4.3"
},
"devDependencies": {
"@testing-library/react": "^8.0.1",
"@types/react-redux": "^7.1.1",
"@types/react-router-dom": "^4.3.2",
"@types/react-toastify": "^4.0.2",
"@types/react-transition-group": "^2.9.0",
"@types/redux": "^3.6.0",
"coveralls": "^3.0.3",
"jest-dom": "^3.1.3",
"node-sass": "^4.11.0",
"nyc": "^14.0.0",
"prettier": "^1.17.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint-ts": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"report-coverage": "nyc report --report=text-lcov | coveralls"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}