forked from OriginProtocol/origin-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 3.95 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"author": "Nick Poulden",
"name": "identity-playground",
"version": "0.1.0",
"license": "MIT",
"description": "Working implementation and demonstration of ERC 725",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/OriginProtocol/identity-playground.git"
},
"scripts": {
"test": "mocha -r @babel/register test -t 10000",
"test:watch": "mocha -r @babel/register -w --watch-extensions sol -t 5000 test",
"start": "node -r @babel/register index",
"build:contracts": "BUILD=1 mocha -r @babel/register -t 10000 test",
"build:js": "webpack --config webpack.prod.js --progress",
"build:css": "node -r @babel/register -r ./src/pages/App -e \"console.log(require('react-styl').getCss())\" > public/css/app.css",
"build": "npm run build:js && npm run build:css",
"lint": "eslint .",
"prettier": "find ./src -iname '*.js' | xargs ./node_modules/.bin/prettier --write",
"clean": "rm -rf data/db"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"ajv": "^6.5.3",
"babel-plugin-module-resolver": "^3.1.1",
"body-parser": "^1.18.3",
"bs58": "^4.0.1",
"date-fns": "^1.29.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"ganache-core": "2.2.1",
"ipfs": "^0.31.7",
"ipfs-api": "^24.0.1",
"oauth": "^0.9.15",
"prettier": "^1.14.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-styl": "^0.0.3",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"serve-static": "^1.13.2",
"solc": "^0.4.24",
"superagent": "^3.8.3",
"web3": "^1.0.0-beta.36"
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": true
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"module-resolver",
{
"alias": {
"actions": "./src/actions",
"components": "./src/components",
"constants": "./src/constants",
"contracts": "./src/contracts",
"pages": "./src/pages",
"reducers": "./src/reducers",
"utils": "./src/utils"
}
}
],
"@babel/plugin-transform-runtime",
"@babel/plugin-transform-destructuring",
"@babel/plugin-transform-object-assign",
"@babel/plugin-proposal-object-rest-spread"
]
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-destructuring": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^5.5.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-react": "^7.11.1",
"opener": "^1.5.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.2.0",
"webpack-dev-server": "^v3.1.7"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"impliedStrict": true
}
},
"globals": {
"Web3": true,
"web3": true,
"OfficialIdentities": 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"
}
},
"eslintIgnore": [
"node_modules",
"public"
]
}