This repository was archived by the owner on Oct 20, 2023. 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
79 lines (79 loc) · 2.29 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "daidex",
"version": "1.0.0",
"main": "index.js",
"repository": "git@gitlab.com:daidex/daidex.git",
"author": "Luis Lacruz <luixlacrux18@gmail.com>",
"license": "MIT",
"scripts": {
"precommit": "npm run lint",
"start": "webpack-dev-server --mode development --progress",
"build:dist": "better-npm-run build:dist",
"build:prod": "better-npm-run build:prod",
"lint": "eslint src"
},
"betterScripts": {
"build:dist": "npm run lint && webpack --mode production --progress --colors",
"build:prod": {
"command": "npm run lint && webpack --mode production --progress --colors",
"env": {
"NOD_ENV": "production"
}
}
},
"dependencies": {
"0x.js": "^0.38.6",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"bignumber.js": "^5.0.0",
"classnames": "^2.2.6",
"connected-react-router": "^4.3.0",
"es6-promisify": "^6.0.0",
"history": "^4.7.2",
"install": "^0.12.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.10",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-input-autosize": "^2.2.1",
"react-modal": "^3.5.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-switch": "^3.0.4",
"redux": "^4.0.0",
"redux-form": "^7.4.2",
"redux-thunk": "^2.3.0",
"web3": "^1.0.0-beta.35"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"better-npm-run": "^0.1.0",
"css-loader": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "17.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"react-hot-loader": "^4.3.4",
"redbox-react": "^1.6.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}