-
Notifications
You must be signed in to change notification settings - Fork 413
/
package.json
58 lines (56 loc) · 1.58 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
{
"name": "git-webhook",
"version": "1.0.0",
"scripts": {
"lint:js": "eslint app/static/src",
"lint:py": "flake8",
"test": "npm run lint:js && npm run lint:py",
"js": "webpack --config webpack.config.js",
"dev_js": "webpack --config webpack.config.js --watch",
"dev_py": "python run_webhook.py",
"clean:celery": "rimraf celerybeat*",
"celery": "npm run clean:celery && celery -A app.celeryInstance worker --loglevel=info",
"db": "python scripts.py rebuild_db"
},
"keywords": [],
"author": "hustcc",
"license": "MIT",
"homepage": "http://webhook.hust.cc",
"repository": {
"type": "git",
"url": "https://github.com/NetEaseGame/git-webhook"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.3.15",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.0",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.10.1",
"css-loader": "~0.16.0",
"jsx-loader": "~0.13.2",
"style-loader": "~0.12.3",
"file-loader": "~0.8.4",
"cross-env": "^1.0.8",
"react-router": "^2.0.0",
"rimraf": "^2.5.0"
},
"dependencies": {
"onfire.js": ">=1.0.6",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"timeago-react": ">=1.0.6",
"timeago.js": ">=2.0.2",
"xhr.js": ">=1.0.2",
"pys": ">=1.0.3",
"hrn": ">=1.0.0"
}
}