-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.08 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
103
104
105
106
107
108
109
110
111
112
113
{
"name": "sybil.me",
"version": "0.1.0",
"private": true,
"dependencies": {
"blob-to-buffer": "^1.2.7",
"immutability-helper": "^2.6.6",
"ipfs": "^0.28.0",
"ipfs-api": "^17.5.0",
"ipfs-pubsub-room": "^1.1.5",
"is-mobile": "^0.2.2",
"js-ipfs": "0.0.301",
"moment": "^2.21.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-dropzone": "^4.2.7",
"react-icons": "^2.2.7",
"react-loading": "^1.0.3",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.0",
"react-scrollable-anchor": "^0.6.1",
"react-spinners": "^0.3.1",
"react-sticky": "^6.0.1",
"react-syntax-highlighter": "^7.0.0",
"styled-components": "^3.1.6",
"sybil": "0.0.15",
"uuid": "^3.2.1",
"web3": "^1.0.0-beta.27",
"web3-core-helpers": "^1.0.0-beta.33"
},
"scripts": {
"start": "node ./scripts/start.js",
"build": "node ./scripts/build.js",
"test": "node ./scripts/test.js --env=jsdom",
"now-start": "serve -d build"
},
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"object-assign": "^4.1.1",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-loader": "^2.1.3",
"promise": "^8.0.1",
"raf": "^3.4.0",
"react-dev-utils": "^5.0.1",
"react-scripts-plugin-no-minify": "^0.3.2",
"serve": "^6.5.3",
"style-loader": "^0.20.3",
"sw-precache-webpack-plugin": "^0.11.5",
"uglify-es": "^3.3.9",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"webpack-manifest-plugin": "^2.0.0",
"whatwg-fetch": "^2.0.4"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,mjs}"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node",
"mjs"
]
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": "react-app"
}
}