-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
93 lines (93 loc) · 2.8 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
89
90
91
92
93
{
"name": "codecrumbs",
"version": "1.8.3",
"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:cli": "node cli/index.cli.js -e example-project/src-client/index.js -d example-project/src-client/",
"server-debug": "nodemon --inspect src/index.dev.js",
"clean": "rm -rf build",
"webpack-compile-local": "cd src/public && webpack --config webpack.local.js --progress",
"build": "yarn clean && yarn webpack-compile-local",
"pretty": "prettier --write \"./src/public/js/**/*.js\""
},
"bin": {
"codecrumbs": "./cli/index.cli.js"
},
"dependencies": {
"@babel/parser": "^7.1.2",
"@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.9.0",
"js2flowchart": "1.3.2",
"lodash": "^4.17.10",
"lodash.debounce": "^4.0.8",
"madge": "^3.4.4",
"php-parser": "^3.0.2",
"portscanner": "^2.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"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/cli": "^7.4.4",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@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",
"babel-plugin-transform-define": "^1.3.1",
"css-loader": "^0.28.11",
"husky": "^1.3.1",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"nodemon": "^1.18.7",
"prettier": "^1.14.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"
}
}
}