-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.18 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
{
"name": "TU-BDB-ORM",
"version": "1.0.0",
"description": "BigchainDB ORM repo",
"scripts": {
"precommit": "yarn lint --fix",
"lint": "eslint 'src/**/*.js*' ./src --fix",
"start": "parcel src/index.html",
"test": "jest --all --verbose --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:local": "jest --all --verbose --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Trasebe/TU-BDB-ORM.git"
},
"author": "Maurice Dalderup <Maurice_Dalderup@hotmail.com>",
"license": "MIT",
"dependencies": {
"antd": "3.4.3",
"babel-polyfill": "6.26.0",
"bigchaindb-orm": "2.0.0",
"bip39": "2.5.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.3",
"jest": "22.4.3",
"js-sha3": "0.7.0",
"jss": "9.8.1",
"jss-camel-case": "6.1.0",
"jss-global": "3.0.0",
"jss-vendor-prefixer": "8.0.0",
"prop-types": "15.6.1",
"raf": "3.4.0",
"react": "16.3.2",
"react-dom": "16.3.2",
"react-jss": "8.4.0",
"react-test-renderer": "16.3.2"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.3",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"coveralls": "3.0.0",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"husky": "0.14.3",
"parcel-bundler": "1.7.1",
"prettier": "1.12.1"
},
"jest": {
"setupFiles": [
"./jest.setup.js"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index.jsx",
"!src/__helpers__/TestPropTypes.helper.js",
"!**/node_modules/**"
],
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|svg)$": "<rootDir>/src/__mocks__/file.mock.js"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}