-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
79 lines (79 loc) · 2.3 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
{
"name": "bcoin-boilerplate",
"version": "1.1.0",
"description": "A boilerplate repo to get started with a bcoin based project",
"repository": {
"type": "git",
"url": "https://github.com/Bucko13/bcoin-boilerplate"
},
"scripts": {
"build": "browserify client/src/index.js -t babelify --outfile client/dist/build.js",
"watch": "watchify client/src/index.js -t babelify --outfile client/dist/build.js --debug --verbose",
"build:react": "browserify client/react-src/index.js --extension=.jsx -t babelify --outfile client/dist/build.js",
"watch:react": "watchify client/react-src/index.js --extension=.jsx -t babelify --outfile client/dist/build.js --debug --verbose",
"start-bcoin": "nodemon ./server/bcoin-server.js",
"start-server": "nodemon ./server/server.js",
"start-spv": "npm --bcoin_node=spv run start-bcoin",
"build:webpack": "webpack --config webpack.config.js"
},
"config": {
"config": "./bcoin-config.js"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-3"
],
"plugins": [
"transform-runtime"
]
},
"browserify": {
"extension": [
"jsx"
],
"transform": [
"partialify",
"babelify"
]
},
"author": "Buck Perley",
"license": "ISC",
"dependencies": {
"assert": "^1.4.1",
"basic-auth": "^1.1.0",
"bcoin": "1.0.0-beta.14",
"body-parser": "^1.16.1",
"cookie-parser": "^1.4.3",
"express": "^4.14.1",
"jquery": "^3.1.1",
"level-js": "^2.2.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"request": "^2.79.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"nodemon": "^1.11.0",
"partialify": "^3.1.6",
"source-map-loader": "^0.2.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"watchify": "^3.9.0",
"webpack": "^3.4.1"
}
}