This repository has been archived by the owner on Aug 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.49 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
{
"name": "nos-dapp",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "parcel build src/index.html",
"precommit": "yarn lint",
"lint": "eslint 'src/**/*.js*'",
"start": "parcel src/index.html --no-hmr",
"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/nos/create-nos-dapp.git"
},
"license": "MIT",
"keywords": [
"nOS",
"NEO",
"Blockhain",
"React",
"Parcel",
"JSS",
"JS",
"HTML",
"starter"
],
"author": "",
"bugs": {
"url": "https://github.com/nos/create-nos-dapp/issues"
},
"homepage": "https://github.com/nos/create-nos-dapp#readme",
"dependencies": {
"@nosplatform/api-functions": "^0.2.2",
"babel-polyfill": "^6.26.0",
"binascii": "^0.0.2",
"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",
"react": "^16.4.0",
"react-dom": "^16.3.1",
"react-jss": "^8.4.0"
},
"devDependencies": {
"@cityofzion/neon-js": "^3.8.0",
"babel-cli": "6.26.0",
"babel-eslint": "8.2.3",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-function-bind": "6.22.0",
"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",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.3",
"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",
"jest": "22.4.3",
"parcel-bundler": ">=1.10.0",
"prettier": "1.12.0",
"raf": "3.4.0",
"react-test-renderer": "16.3.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"
]
}