-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.54 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
{
"name": "juicy-repl",
"description": "An extensible JavaScript REPL",
"version": "0.1.10",
"license": "UNLICENSED",
"main": "./lib/app/start.js",
"bin": {
"juicy": "./bin/juicy.js"
},
"scripts": {
"start": "node ./bin/juicy.js",
"dev": "yarn watch",
"precommit": "yarn lint && yarn readme && git add README.md",
"lint": "eslint --fix . --ext .js,.jsx lib",
"readme": "node ./bin/generateReadme.js",
"version": "yarn readme && git add README.md",
"postversion": "git push && git push --tags && npm publish",
"watch-app": "nodemon --config ./config/nodemon/app.json ./bin/juicy.js",
"watch-webpack": "nodemon --config ./config/nodemon/webpack.json ./lib/app/rebuildWebpack.js",
"watch-readme": "nodemon --config ./config/nodemon/readme.json ./bin/generateReadme.js",
"watch": "concurrently \"yarn watch-app\" \"yarn watch-webpack\" \"yarn watch-readme\""
},
"dependencies": {
"args": "3.0.8",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-latest": "6.24.1",
"babel-preset-react": "6.24.1",
"bluebird": "3.5.1",
"body-parser": "1.18.2",
"copy-webpack-plugin": "4.3.1",
"daemonize-process": "1.0.5",
"express": "4.16.2",
"express-handlebars": "3.0.0",
"gulp": "3.9.1",
"gulp-babel": "7.0.0",
"gulp-rename": "1.2.2",
"gulp-replace": "0.6.1",
"latest-version": "3.1.0",
"lodash": "4.17.5",
"lzutf8": "^0.4.7",
"prop-types": "15.6.0",
"ramda": "0.25.0",
"react": "16.2.0",
"react-autobind": "1.0.6",
"react-bootstrap-sweetalert": "4.2.3",
"react-dom": "16.2.0",
"react-fontawesome": "1.6.1",
"react-monaco-editor": "0.13.0",
"rxjs": "^5.5.6",
"shelljs": "0.7.8",
"shorthash": "0.0.2",
"webpack": "3.10.0"
},
"devDependencies": {
"concurrently": "3.5.1",
"eslint": "4.12.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.5.1",
"husky": "0.14.3",
"joi": "13.1.2",
"moment": "2.20.1",
"nodemon": "1.14.8",
"uuid": "3.2.1"
},
"homepage": "https://github.com/djorg83/juicy",
"repository": {
"type": "git",
"url": "[email protected]:djorg83/juicy"
},
"author": "Daniel Jorgensen <[email protected]>",
"contributors": [
{
"name": "Daniel Jorgensen",
"email": "[email protected]"
},
{
"name": "Ricardo Spear",
"email": "[email protected]"
}
]
}