forked from Bogdan-Lyashenko/codecrumbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.53 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
{
"name": "codecrumbs",
"version": "1.1.5",
"author": "Bohdan Liashenko",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/Bogdan-Lyashenko/codecrumbs.git"
},
"scripts": {
"start": "yarn client-dev & yarn server-dev",
"server:one": "node src/index.dev.js",
"server:two": "node src/index.dev.js two",
"client-dev": "cd src/public && webpack --config webpack.dev.js --progress --colors --watch --env dev",
"server-dev": "nodemon src/index.dev.js",
"server-debug": "nodemon --inspect src/index.dev.js",
"build": "cd src/public && webpack --config webpack.prod.js --progress --colors",
"start:standalone": "cd src/public/dist/standalone && http-server",
"pretty": "prettier --write \"./src/public/js/**/*.js\""
},
"bin": {
"codecrumbs": "./cli/index.cli.js"
},
"dependencies": {
"@babel/parser": "^7.1.2",
"@babel/polyfill": "^7.0.0",
"@babel/traverse": "^7.1.0",
"antd": "^3.9.2",
"chalk": "^2.4.2",
"classnames": "^2.2.6",
"colors": "^1.3.2",
"commander": "^2.19.0",
"copy-text-to-clipboard": "^1.0.4",
"d3-flextree": "^2.1.1",
"directory-tree": "^2.1.0",
"file-saver": "^2.0.0",
"http-server": "^0.11.1",
"js2flowchart": "^1.1.7",
"lodash": "^4.17.10",
"lodash.debounce": "^4.0.8",
"madge": "^3.3.0",
"portscanner": "^2.2.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-draggable": "^3.0.5",
"react-redux": "^5.0.7",
"react-syntax-highlighter": "8.0.1",
"redux": "^4.0.0",
"redux-persist": "^5.10.0",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.2.0",
"reselect": "^4.0.0",
"watchpack": "^1.6.0",
"websocket": "1.0.27"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"babel-loader": "^8.0.4",
"babel-plugin-import": "^1.9.1",
"css-loader": "^0.28.11",
"husky": "^1.3.1",
"node-sass": "^4.9.3",
"nodemon": "^1.18.7",
"prettier": "^1.14.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"webpack": "^4.20.2",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.5"
},
"nodemonConfig": {
"ignore": [
"src/public/**/*.*"
],
"delay": "2500"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}