This repository was archived by the owner on Mar 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.01 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.01 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "dapper",
"version": "0.2.0",
"description": "A boilerplate for Ethereum dapps.",
"keywords": [
"blockchain",
"ethereum",
"dapp",
"boilerplate",
"frontend"
],
"repository": "https://github.com/kleros/dapper",
"author": "Kleros",
"license": "MIT",
"private": true,
"scripts": {
"prettify": "kleros-scripts prettify",
"lint:scss": "kleros-scripts lint:scss",
"lint:js": "kleros-scripts lint:js",
"lint": "yarn run lint:scss && yarn run lint:js",
"test": "react-scripts test --env=jsdom --coverage",
"test:coveralls": "coveralls < ./coverage/lcov.info",
"precommit": "kleros-scripts precommit",
"commitmsg": "kleros-scripts commitmsg",
"cz": "kleros-scripts cz",
"start:scss": "yarn run build:scss && yarn run build:scss --watch",
"start:js": "react-scripts start",
"start:storybook": "start-storybook -p 9001 -c .storybook",
"storybook": "run-p start:scss start:storybook",
"build:scss": "node-sass-chokidar ./src -o ./src",
"build:js": "react-scripts build",
"start": "run-p start:scss start:js",
"build": "yarn run build:scss && yarn run build:js",
"build:analyze": "source-map-explorer build/static/js/main.*"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/*.js",
"!src/bootstrap/**/*.js",
"!src/components/identicon/index.js",
"!**/node_modules/**"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@dump247/storybook-state": "^1.2.1",
"@storybook/addon-actions": "^3.3.11",
"@storybook/addon-storyshots": "^3.3.10",
"@storybook/addons": "^3.3.11",
"@storybook/react": "^3.3.10",
"@storybook/storybook-deployer": "^2.2.0",
"coveralls": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint-plugin-react": "^7.6.1",
"ganache-cli": "^6.1.0",
"husky": "^0.14.3",
"jest-enzyme": "^6.0.0",
"kleros-scripts": "^0.6.0",
"node-sass-chokidar": "^1.2.2",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2",
"prop-types": "^15.6.0",
"react-test-renderer": "^16.2.0",
"redux-immutable-state-invariant": "^2.1.0",
"redux-unhandled-action": "^1.3.0",
"sass-loader": "^6.0.6",
"standard-version": "^4.3.0",
"storybook-host": "^4.1.5",
"timezone-mock": "^0.0.7"
},
"dependencies": {
"create-redux-form": "^0.1.2",
"history": "^4.7.2",
"lessdux": "^0.7.3",
"normalize.css": "^8.0.0",
"react": "^16.2.0",
"react-addons-css-transition-group": "^15.6.2",
"react-blockies": "^1.2.2",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "1.1.1",
"redux": "^3.7.2",
"redux-form": "^7.2.3",
"redux-saga": "^0.16.0",
"web3": "^1.0.0-beta.34"
}
}