-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.06 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.06 KB
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
{
"name": "github-board",
"version": "0.0.1",
"description": "Display multiples GitHub repo on one page",
"main": "''",
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"dev-web": "webpack-dev-server --progress --profile --colors",
"server-api": "node server/index.js",
"start": "npm-run-all --parallel server-api dev-web",
"lint": "eslint --ext js --ext jsx src || exit 0",
"dev": " webpack-dashboard -- webpack-dev-server --progress --profile --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/dpellier/github-board"
},
"author": "Damien Pellier",
"license": "MIT",
"homepage": "https://github.com/dpellier/github-board",
"dependencies": {
"auth0-lock": "^10.11.0",
"body-parser": "^1.17.1",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"jwt-decode": "^2.1.0",
"moment": "^2.17.1",
"nanoajax": "^0.4.3",
"node-sass": "^4.3.0",
"normalize.css": "^5.0.0",
"q": "^1.4.1",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-router": "^3.0.2",
"reflux": "^5.0.0",
"request-promise": "^4.1.1",
"sass-loader": "^4.0.2"
},
"devDependencies": {
"babel-core": "6.22.0",
"babel-loader": "6.2.9",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-classes": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"babel-runtime": "^6.22.0",
"css-loader": "0.26.1",
"eslint": "^3.17.1",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "0.9.0",
"html-webpack-plugin": "^2.26.0",
"npm-run-all": "^4.0.1",
"postcss-loader": "^1.2.2",
"react-hot-loader": "^3.0.0-beta.6",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-cleanup-plugin": "^0.4.1",
"webpack-dashboard": "^0.2.1",
"webpack-dev-server": "1.16.2"
}
}