-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
102 lines (102 loc) · 3.15 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
{
"name": "IncrementalCryptoGame",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/DecenterApps/IncrementalCryptoGame",
"author": "astankovic <[email protected]>",
"scripts": {
"dev": "webpack-dev-server --history-api-fallback --compress --config ./build/webpack-dev.config.js --host=0.0.0.0",
"prod": "webpack --config ./build/webpack-prod.config.js",
"staging": "webpack --config ./build/webpack-staging.config.js",
"prod-serve": "webpack-dev-server --history-api-fallback --compress --config ./build/webpack-prod.config.js",
"test": "jest --colors",
"test:watch": "jest --onlyChanged --watch"
},
"jest": {
"moduleDirectories": [
"./node_modules",
"./src"
],
"moduleNameMapper": {
"^.+\\.(css|scss|png|jpg|jpeg)$": "<rootDir>/build/__mocks__/staticFileStub.js"
},
"setupFiles": [
"<rootDir>/build/__mocks__/globals.js"
],
"testMatch": [
"**/tests/**/*.js",
"**/?(*.)(spec|test).js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/classes/**/*.{js}",
"!**/node_modules/**"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/coverage/",
"./dist"
],
"verbose": true
},
"dependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"big-integer": "^1.6.27",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.4.1",
"css-loader": "^0.28.9",
"deep-diff": "^1.0.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"expose-loader": "^0.7.4",
"extract-text-webpack-plugin": "^3.0.2",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"image-loader": "^0.0.1",
"image-webpack-loader": "^4.0.0",
"jest": "^22.4.3",
"node-sass": "^4.7.2",
"openzeppelin-solidity": "^1.11.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"prop-types": "^15.6.0",
"rc-progress": "^2.2.5",
"react": "^16.2.0",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-form": "^7.3.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"serialijse": "^0.1.3",
"stream-equal": "^1.1.0",
"style-loader": "^0.20.1",
"web3": "1.0.0-beta.33",
"webfontloader": "^1.6.28",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1",
"write-file-webpack-plugin": "^4.2.0"
},
"devDependencies": {}
}