-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.75 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
{
"name": "exchange",
"version": "1.0.0",
"description": "Wallet management with exchange information",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint:fix": "tslint -c tslint.json -p tsconfig.json --fix",
"start": "webpack-dev-server --mode development",
"test": "jest",
"test:coverage": "jest --collectCoverage"
},
"author": "William Rozin Gaspar <williamrozingaspar@gmail.com>",
"license": "ISC",
"dependencies": {
"@material-ui/core": "3.9.2",
"@material-ui/icons": "3.0.2",
"date-fns": "1.30.1",
"ramda": "0.25.0",
"react": "16.8.0",
"react-dom": "16.8.0",
"react-redux": "6.0.0",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"react-swipeable-views": "0.13.1",
"redux": "4.0.1",
"redux-thunk": "2.3.0",
"styled-components": "4.1.3",
"typescript": "3.1.1"
},
"devDependencies": {
"@types/enzyme": "3.1.18",
"@types/enzyme-adapter-react-16": "1.0.4",
"@types/jest": "24.0.4",
"@types/ramda": "0.25.50",
"@types/react": "16.8.1",
"@types/react-dom": "16.8.0",
"@types/react-redux": "7.0.1",
"@types/react-router-dom": "4.3.1",
"@types/react-swipeable-views": "0.12.2",
"@types/styled-components": "4.1.8",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.9.1",
"enzyme-to-json": "3.3.5",
"file-loader": "3.0.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"image-webpack-loader": "4.6.0",
"jest": "24.1.0",
"source-map-loader": "0.2.4",
"ts-jest": "23.10.5",
"ts-loader": "5.3.3",
"tslint": "5.11.0",
"webpack": "4.20.2",
"webpack-cli": "3.1.1",
"webpack-dev-server": "3.1.11"
}
}