-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
{
"name": "git-issue-viewer",
"version": "0.1.0",
"author": "Sumit Rai <[email protected]>",
"license": "MIT",
"private": true,
"main": "start.js",
"scripts": {
"build": "webpack & webpack --config webpack.config.production.js",
"dev": "node webpack-dev-server.js",
"devtest": "jenkins-mocha tests/unit --require tests/unit/globals.js --recursive --full-trace --compilers js:babel/register",
"lint": "eslint --quiet . --ext .js --ext .jsx",
"start": "node start.js",
"test": "npm run lint && jenkins-mocha tests/unit --require tests/unit/globals.js --recursive --full-trace --compilers js:babel/register"
},
"dependencies": {
"autoprefixer": "^6.3.1",
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"body-parser": "^1.6.4",
"compression": "^1.5.1",
"cookie-parser": "^1.3.3",
"csurf": "^1.6.3",
"debug": "^2.0.0",
"express": "^4.3.2",
"express-state": "^1.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"fluxible": "^1.0.0",
"fluxible-addons-react": "^0.2.0",
"fluxible-plugin-fetchr": "^0.3.0",
"fluxible-router": "^0.3.0",
"marked": "^0.3.5",
"postcss-loader": "^0.8.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-intl": "^2.0.0-beta-2",
"react-waypoint": "^1.2.2",
"serialize-javascript": "^1.0.0",
"serve-favicon": "^2.1.6"
},
"devDependencies": {
"async": "^1.5.2",
"babel-eslint": "^3.0.1",
"babel-loader": "^5.1.3",
"bundle-loader": "^0.5.0",
"chai": "^3.4.0",
"css-loader": "^0.23.1",
"dirty-chai": "^1.2.2",
"eslint": "^0.24.0",
"eslint-plugin-react": "^3.16.1",
"image-webpack-loader": "^1.6.3",
"immutable": "^3.7.6",
"jenkins-mocha": "^2.5.0",
"jsdom": "^7.2.2",
"json-loader": "^0.5.1",
"jsx-test": "^0.8.2",
"mockery": "^1.4.0",
"node-sass": "^3.4.2",
"nodemon": "^1.2.1",
"react-addons-test-utils": "^0.14.6",
"react-hot-loader": "^1.2.8",
"request": "^2.67.0",
"sass-loader": "^3.1.2",
"shelljs": "^0.5.3",
"sinon": "^1.17.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.4",
"webpack-dev-server": "^1.6.5"
},
"pre-commit": [
"lint",
"test"
]
}