forked from OriginProtocol/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.06 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "origin-demo-dapp",
"version": "0.3.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/OriginProtocol/demo-dapp.git"
},
"dependencies": {
"babel-loader": "^8.0.0-beta.2",
"bootstrap": "^4.1.1",
"browser-image-resizer": "^1.1.4",
"dotenv-webpack": "^1.5.5",
"fetch": "^1.1.0",
"jquery": "^3.3.1",
"moment": "^2.22.1",
"origin": "0.6.1",
"popper.js": "^1.14.3",
"react": "^16.3.2",
"react-avatar-editor": "^11.0.2",
"react-dom": "^16.3.2",
"react-js-pagination": "^3.0.2",
"react-jsonschema-form": "^1.0.3",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"serve": "^6.5.6",
"web3": "^1.0.0-beta.34"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.46",
"@babel/register": "^7.0.0-beta.46",
"babel-eslint": "^8.2.3",
"babel-plugin-module-resolver": "^3.1.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "0.28.11",
"dotenv": "^5.0.1",
"eslint": "4.19.1",
"eslint-plugin-react": "7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "1.1.11",
"html-webpack-plugin": "3.2.0",
"identicon.js": "^2.3.2",
"style-loader": "0.21.0",
"webpack": "4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "3.1.4"
},
"scripts": {
"heroku-postbuild": "npm run build",
"install:dev": "npm install && npm link origin",
"start": "if [ \"$NODE_ENV\" = \"production\" ]; then npm run serve; else npm run dev; fi",
"serve": "serve build",
"dev": "webpack-dev-server --open",
"deploy:ipfs": "./scripts/deploy.sh",
"build": "NODE_ENV=production webpack --progress --display errors-only",
"test": "node scripts/test.js --env=jsdom"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"module-resolver",
{
"alias": {
"actions": "./src/actions",
"components": "./src/components",
"constants": "./src/constants",
"pages": "./src/pages",
"reducers": "./src/reducers",
"utils": "./src/utils"
}
}
]
]
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"impliedStrict": true
}
},
"globals": {
"web3": true
},
"env": {
"browser": true,
"node": true,
"es6": true,
"mocha": true
},
"plugins": [
"react"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"rules": {
"react/prop-types": "off",
"react/no-children-prop": "off",
"no-console": "off"
}
}
}