forked from metaphorical/quantum-blox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.19 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
{
"name": "quantum-blox",
"version": "0.5.0",
"description": "Modular UI implementation in React, with full development boilerplate and custom webpack builds",
"main": "index.js",
"scripts": {
"start": "node dev-server.js",
"build:prod": "./node_modules/.bin/webpack --config webpack.prod.js -p",
"build:dev": "./node_modules/.bin/webpack",
"build:watch": "./node_modules/.bin/webpack --watch",
"build:analyze": "./node_modules/.bin/webpack --config webpack.analyze.js -p",
"serve-static": "python ./tools/serve-static.py 3000 static",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch",
"test:coverage": "./node_modules/.bin/jest --collectCoverageFrom=ui/**/*.js --coverage",
"check-updates": "./node_modules/.bin/npm-check-updates"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metaphorical/quantum-blox.git"
},
"keywords": [
"modular",
"ui",
"react",
"webpack",
"postcss"
],
"author": "Rastko Vukasinovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/metaphorical/quantum-blox/issues"
},
"homepage": "https://github.com/metaphorical/quantum-blox#readme",
"dependencies": {
"axios": "^0.16.2",
"babili": "0.1.4",
"extract-text-webpack-plugin": "3.0.0",
"lost": "^8.0.0",
"npm-check-updates": "^2.11.3",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.5",
"react-router-dom": "^4.2.2",
"redux": "^3.6.0",
"redux-saga": "^0.15.3"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel": "^6.23.0",
"babel-core": "^6.24.1",
"babel-jest": "^21.0.2",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"babili-webpack-plugin": "0.1.2",
"compression-webpack-plugin": "^1.0.0",
"css-loader": "^0.28.4",
"file-loader": "^0.11.1",
"identity-obj-proxy": "^3.0.0",
"ignore-styles": "^5.0.1",
"jest": "^21.1.0",
"jshint": "^2.9.4",
"json-loader": "^0.5.4",
"postcss": "^6.0.1",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^6.0.1",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.5",
"postcss-mixins": "^6.0.0",
"postcss-nested": "^2.0.2",
"postcss-pxtorem": "^4.0.1",
"react-hot-loader": "^1.3.1",
"style-loader": "^0.18.1",
"url-loader": "^0.5.8",
"webpack": "3.6.0",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-dev-server": "2.8.2",
"webpack-hot-middleware": "2.19.1",
"webpack-notifier": "1.5.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/tests/__mocks/fileMock.js",
"\\.css$": "identity-obj-proxy"
},
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
}
}
}