-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.14 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
{
"name": "birdo",
"version": "1.0.0",
"description": "Scrape social networks for information about birds",
"main": "index.js",
"engines": {
"node": ">=0.12.2 <0.13"
},
"scripts": {
"lint-client": "eslint --ext .js,.jsx --rule 'no-extra-parens: 0' client",
"lint-server": "eslint --env node --rule 'no-var: 0' server *.js",
"lint": "npm run lint-server && npm run lint-client",
"test": "npm run lint",
"server-dev": "webpack-dev-server --config birds/assets/webpack.config.dev.js --progress --colors --port 2992",
"server-hot": "webpack-dev-server --config birds/assets/webpack.config.hot.js --hot --progress --colors --port 2992 --inline",
"watch": "webpack --config birds/assets/webpack.config.js --watch",
"dev": "npm run server-dev",
"hot": "npm run server-hot",
"build": "webpack --config birds/assets/webpack.config.js",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codefortulsa/birdo.git"
},
"bin": {
"webpack": "node_modules/webpack/bin/webpack.js"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/codefortulsa/birdo/issues"
},
"homepage": "https://github.com/codefortulsa/birdo#readme",
"dependencies": {
"bluebird": "^2.9.32",
"cjsx-loader": "^2.0.1",
"classnames": "^2.1.3",
"clean-webpack-plugin": "^0.1.3",
"coffee-loader": "^0.7.2",
"coffee-react-transform": "^3.2.0",
"css-loader": "^0.15.1",
"extract-text-webpack-plugin": "^0.8.2",
"lodash": "^4.17.15",
"nib": "^1.1.0",
"react": "^0.13.3",
"react-bootstrap": "^0.23.7",
"react-router": "^0.13.3",
"react-router-bootstrap": "^0.16.0",
"react-select": "0.5.1",
"reflux": "^0.2.8",
"style-loader": "^0.12.3",
"stylus-loader": "^1.2.1",
"superagent": "^1.2.0",
"superagent-bluebird-promise": "^2.0.2",
"webpack": "^1.10.1",
"webpack-bundle-tracker": "0.0.51",
"webpack-stats-plugin": "0.0.4"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-plugin-react": "^2.6.4",
"react-hot-loader": "^1.2.7",
"webpack-dev-server": "^1.10.1"
}
}