-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.98 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
{
"name": "github-oss-dashboard",
"version": "1.0.0",
"description": "A UI for querying and visualizing open source Github projects",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register tests/unit/**/*-specs.js",
"transpile": "npm run transpile:node && npm run transpile:webpack:prod",
"transpile:node": "babel libs/server --out-dir build/server",
"transpile:webpack:prod": "webpack -p --config webpack/webpack.config.js",
"dev": "concurrently \"webpack-dev-server --config webpack/webpack.config.js\" \"babel-watch libs/index.js\"",
"start": "npm run transpile && node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dpgraham/github-oss-dashboard.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dpgraham/github-oss-dashboard/issues"
},
"homepage": "https://github.com/dpgraham/github-oss-dashboard#readme",
"dependencies": {
"antd": "^2.11.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"express": "^4.15.3",
"http-proxy-middleware": "^0.17.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"react-slick": "^0.14.11",
"redux": "^3.7.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"webpack-dev-middleware": "^1.11.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-watch": "^2.0.6",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"concurrently": "^3.5.0",
"css-loader": "^0.28.4",
"mocha": "^3.4.2",
"style-loader": "^0.18.2",
"webpack": "^3.0.0"
}
}