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 11
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.84 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.84 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
{
"name": "kleros",
"version": "0.0.1",
"author": "Kleros",
"license": "MIT",
"private": false,
"dependencies": {
"blockies": "^0.0.2",
"blockies-identicon": "^0.1.0",
"crypto-js": "^3.1.9-1",
"global": "^4.3.2",
"kleros-api": "^0.0.50",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.0.4",
"redux-mock-store": "^1.4.0",
"redux-thunk": "^2.2.0",
"web3": "^0.20.1"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.6",
"@storybook/addon-links": "^3.2.6",
"@storybook/react": "^3.2.8",
"@storybook/storybook-deployer": "^2.0.0",
"babel-eslint": "^8.0.1",
"babel-polyfill": "^6.26.0",
"coveralls": "^3.0.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-to-json": "^3.3.0",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-external-ecmascript-plugin": "^1.0.0",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.1",
"react-scripts": "1.0.13",
"react-test-renderer": "^15.5.0",
"storybook-router": "^0.2.9"
},
"scripts": {
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "npm run build-css && react-scripts test --env=jsdom",
"test:coverage": "npm test -- --coverage",
"test:coveralls": "cat ./coverage/lcov.info | coveralls",
"eject": "react-scripts eject",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"lint": "./node_modules/.bin/eslint src",
"lint-fix": "./node_modules/.bin/eslint src --fix",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"deploy-storybook": "storybook-to-ghpages",
"postinstall": "npm rebuild node-sass",
"build-docs": "./node_modules/.bin/esdoc",
"docs": "open ./docs-static/index.html"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!<rootDir>/node_modules/"
]
},
"setupTestFrameworkScriptFile": "<rootDir>/src/setupTests.js"
}