-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.29 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
{
"bugs": {
"url": "https://github.com/stellar-fox/protostar/issues"
},
"contributors": [
{
"name": "drmats",
"email": "xcmats@protonmail.com",
"url": "https://twitter.com/xcmats/"
}
],
"dependencies": {
"@types/express": "^4.16.1",
"@xcmats/js-toolbox": "^0.8.2",
"chalk": "^2.4.2",
"express": "^4.16.4",
"stellar-sdk": "^1.0.1"
},
"description": "Best friend.",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/plugin-transform-block-scoped-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.4.4",
"@babel/plugin-transform-computed-properties": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.4.4",
"@babel/plugin-transform-exponentiation-operator": "^7.2.0",
"@babel/plugin-transform-literals": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-parameters": "^7.4.4",
"@babel/plugin-transform-regenerator": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/plugin-transform-shorthand-properties": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-template-literals": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@types/stellar-sdk": "^0.11.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"jsdoc": "^3.6.2",
"minami": "^1.2.3",
"nodemon": "^1.19.0",
"rimraf": "^2.6.3",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-node-externals": "^1.7.2"
},
"homepage": "https://stellarfox.net/",
"keywords": [
"friendbot",
"stellar",
"crypto",
"xlm"
],
"license": "Apache-2.0",
"main": "dist/protostar.js",
"name": "@stellar-fox/protostar",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/stellar-fox/protostar.git"
},
"scripts": {
"build": "cross-env BABEL_ENV=production webpack -p --config=webpack.config.js",
"build:jsdoc": "echo \"Generating jsdoc ...\" && jsdoc -c ./jsdoc.json -R ./README.md -r ./src/ -d ./jsdoc/",
"clean": "rimraf ./dist",
"clean:all": "npm run clean && npm run clean:jsdoc",
"clean:jsdoc": "rimraf ./jsdoc",
"clean:modules": " rimraf package-lock.json && rimraf node_modules",
"jsdoc": "npm run clean:jsdoc && npm run build:jsdoc",
"lint": "eslint ./src/",
"production": "node ./dist/protostar.js",
"start": "nodemon -e js --watch ./src/ ./src/index.js --exec \"cross-env BABEL_ENV=development babel-node\"",
"test": "npm run lint && echo \"Warning: no tests specified (yet)\""
},
"version": "0.2.0"
}