-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 3.01 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
{
"name": "@digix/governance-ui-components",
"main": "src/index.jsx",
"version": "0.1.0",
"private": true,
"dependencies": {
"@digix/dao-contracts": "0.0.7",
"@digix/multi-hash": "0.0.2",
"@digix/react-webcam": "^0.2.5",
"@material-ui/core": "^3.1.1",
"actioncable": "^5.2.2",
"apollo-boost": "^0.1.23",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "2.5.1",
"apollo-link": "1.2.8",
"apollo-link-context": "^1.0.12",
"apollo-link-error": "^1.1.7",
"apollo-link-http": "^1.5.11",
"apollo-link-ws": "^1.0.14",
"apollo-utilities": "^1.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-stage-0": "^6.24.1",
"backo2": "^1.0.2",
"color": "^3.0.0",
"dijix": "0.0.15",
"dijix-attestation": "0.0.9",
"dijix-image": "0.0.10",
"dijix-pdf": "0.0.8",
"eventemitter3": "2.0.3",
"graphql": "14.1.1",
"graphql-ruby-client": "^1.6.3",
"graphql-tag": "^2.10.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"rc-slider": "^8.7.0",
"react": "^16.5.2",
"react-apollo": "2.1.4",
"react-burger-menu": "^2.6.2",
"react-countdown-now": "^1.3.0",
"react-dom": "^16.5.2",
"react-ga": "^2.5.7",
"react-markdown": "^4.0.3",
"react-pdf-js": "^4.0.2",
"react-quill": "^1.3.2",
"react-redux": "^5.0.7",
"react-responsive-modal": "^3.4.0",
"react-scripts": "1.1.5",
"react-table": "^6.8.6",
"react-timeago": "^4.4.0",
"react-toggle-component": "^1.0.5",
"secure-random": "^1.1.1",
"styled-components": "^3.4.9",
"web3-utils": "^1.0.0-beta.37"
},
"moduleDirectories": [
"node_modules",
"src"
],
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint './app/**/*.js'",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:eslint:fix": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"ui:generate-translations": "cd ../dao-server && bin/rake ui:generate_translations"
},
"lint-staged": {
"*.js": [
"npm run lint:eslint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"devDependencies": {
"ajv": "^6.5.4",
"babel-eslint": "7.2.3",
"babel-plugin-styled-components": "1.7.1",
"babel-preset-es2015": "^6.24.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-with-prettier": "^4.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.11.1",
"lint-staged": "^8.1.0",
"pre-commit": "^1.2.2",
"prettier": "^1.14.3"
},
"peerDependencies": {
"spectrum-lightsuite": "^0.0.1"
}
}