-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "@talentui/dev-server",
"version": "0.0.0-development",
"main": "index.js",
"repository": "https://github.com/talentui/dev-server.git",
"author": "Raymond Li <[email protected]>",
"license": "MIT",
"SSL-Pass-Phrase": "talentui",
"bin": {
"talentui-dev-server": "./index.js"
},
"scripts": {
"build": "npm run rm && node ./compile/index.js",
"rm": "rm -rf ./dist/*",
"build-prod": "npm run rm && NODE_ENV=production node ./compile/index.js",
"cm": "git-cz",
"debug-build": "node --inspect ./compile/index.js",
"prepublish": "npm run build-prod",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"@talentui/biz-helper": "^1.0.1",
"@talentui/bootstrap-react": "^1.0.1",
"@talentui/cz-package-changelog": "^1.0.0",
"@talentui/webpack-config": "^1.3.5",
"babel-polyfill": "^6.26.0",
"commitizen": "^2.9.6",
"immutable": "^3.8.2",
"jest": "^21.2.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.2.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"semantic-release": "^8.2.0",
"socket.io-client": "^2.0.4",
"webpack": "^3.9.1"
},
"config": {
"commitizen": {
"path": "./node_modules/@talentui/cz-package-changelog"
}
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"http-proxy": "^1.16.2",
"serve-favicon": "^2.4.5",
"socket.io": "^2.0.4",
"sudo-prompt": "^8.0.0",
"uuid": "^3.1.0"
}
}