-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 4.07 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 4.07 KB
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": "bitbox-src",
"version": "1.2.28",
"description": "bitbox source /2",
"files": [
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/bitboxjs/bitbox"
},
"keywords": [
"bitbox",
"cerebral",
"inferno"
],
"author": "Sergiu Toderascu <sergiu.toderascu@gmail.com> (http://bitboxjs.com)",
"license": "MIT",
"scripts": {
"clean": "rimraf packages/bitbox/dist",
"build": "npm run clean && mkdirp packages/bitbox/dist && cp src/index.html packages/bitbox/dist/ && npm run build:prod && npm run build:prod-min",
"packages:purge": "rm -rf node_modules",
"packages:reinstall": "npm run packages:purge && npm install",
"build:prod-min": "cross-env NODE_ENV=production webpack --config ./webpack.production.min.config.js --progress --profile --colors",
"build:prod": "cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"build:watch": "cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors --watch",
"build:watch-min": "cross-env NODE_ENV=production webpack --config ./webpack.production.min.config.js --progress --profile --colors --watch",
"newver": "node ./version.js",
"deploy": "surge ./packages/bitbox/dist bitboxjs.com",
"dist": "npm run newver && npm run build && npm run deploy && cd packages/bitbox && npm publish"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-external-helpers-2": "^6.3.13",
"babel-plugin-inferno": "^0.7.6",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-plugin-webpack-alias": "^1.3.1",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babelrc-rollup": "^2.0.0",
"baobab": "^2.3.3",
"bitbox-transpiler": "^1.0.24",
"cerebral": "^0.35.7",
"cerebral-model": "^0.1.1",
"cerebral-model-immutable": "^0.1.4",
"cerebral-module-devtools": "^0.7.0",
"cerebral-operators": "^0.2.1",
"cerebral-provider-modules": "^0.1.2",
"chokidar": "^1.6.0",
"crypto": "0.0.3",
"css-loader": "^0.23.1",
"debug": "^2.2.0",
"deep-merge": "^1.0.0",
"deepmerge": "^0.2.10",
"events": "^1.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"inferno": "^0.7.24",
"inferno-component": "^0.7.24",
"inferno-create-class": "^0.7.26",
"inferno-create-element": "^0.7.24",
"inferno-dom": "^0.7.24",
"inferno-server": "^0.7.24",
"js-beautify": "^1.6.3",
"lodash": "^4.14.0",
"monkey-hot-loader": "0.0.3",
"nodemon": "^1.10.0",
"rimraf": "^2.5.3",
"rollup": "^0.34.1",
"rollup-plugin-alias": "^1.2.0",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-buble": "^0.12.1",
"rollup-plugin-commonjs": "^3.1.0",
"rollup-plugin-filesize": "^0.4.4",
"rollup-plugin-json": "^2.0.1",
"rollup-plugin-node-builtins": "^1.0.4",
"rollup-plugin-node-globals": "^1.0.5",
"rollup-plugin-node-resolve": "^1.7.1",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
"rucksack-css": "^0.8.6",
"smart-banner-webpack-plugin": "^2.0.0",
"source-map-support": "^0.4.2",
"state-tree": "^0.3.1",
"stats-webpack-plugin": "^0.4.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.12.2"
},
"dependencies": {
"bitbox-transpiler": "^1.0.25"
}
}