-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 2 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": "magic8ui",
"version": "0.0.0-dev",
"description": "Cryptocurrency trading bot frontend",
"bugs": "https://github.com/magic8bot/magic8ui/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/magic8bot/magic8ui.git"
},
"scripts": {
"clean": "rimraf ./dist",
"start:dev": "webpack serve",
"build": "webpack",
"dist": "npm run build",
"rebuild": "npm run clean && npm run dist",
"lint": "tslint -p ./tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"test": "jest --detectOpenHandles --runInBand --forceExit"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.2",
"@fortawesome/free-regular-svg-icons": "^5.1.0-11",
"@fortawesome/free-solid-svg-icons": "^5.2.0",
"@fortawesome/react-fontawesome": "^0.1.2",
"mobx": "^5.15.7",
"mobx-react": "^6.3.1",
"mobx-react-router": "^4.1.0",
"react": "^17.0.1",
"react-cryptocoins": "^1.0.11",
"react-dom": "^17.0.1",
"react-modal": "^3.12.1",
"react-rangeslider": "^2.2.0",
"react-router": "^5.2.0",
"react-select": "^3.1.1"
},
"devDependencies": {
"@types/history": "^4.7.8",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-modal": "^3.10.6",
"@types/react-router": "^5.1.8",
"@types/react-select": "^3.0.28",
"@types/webpack": "^4.41.25",
"camelcase": "^6.2.0",
"cheerio": "^1.0.0-rc.3",
"cryptocoins-icons": "^2.9.0",
"cryptocurrency-icons": "^0.17.0",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"stylus": "^0.54.8",
"stylus-loader": "^4.3.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.12",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"uppercamelcase": "^3.0.0",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}