-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.54 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.54 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ionizer-server",
"version": "0.0.1",
"description": "Server for the ionizer plugin manager",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"dev": "npm run build && cross-env DEBUG=ionizer* npm start",
"start": "node lib/index.js",
"start-fe": "webpack-dev-server --progress --profile --colors",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --watch src --exec \"npm run dev\" -e ts"
},
"author": "Samuel Attard",
"license": "MIT",
"dependencies": {
"@types/express-session": "^1.15.0",
"body-parser": "^1.17.2",
"debug": "^2.6.8",
"express": "^4.15.3",
"express-fileupload": "^0.1.3",
"express-session": "^1.15.3",
"fs-extra": "^3.0.1",
"mongoose": "^4.10.3",
"node-rsa": "^0.4.2",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"passport-openid": "^0.4.0",
"pify": "^3.0.0",
"semver": "^5.3.0"
},
"devDependencies": {
"@atlaskit/avatar": "^4.0.5",
"@atlaskit/css-reset": "^1.1.4",
"@atlaskit/droplist": "^4.0.1",
"@atlaskit/icon": "^6.6.0",
"@atlaskit/navigation": "^13.0.2",
"@atlaskit/spinner": "^2.2.3",
"@types/body-parser": "^1.16.3",
"@types/debug": "0.0.29",
"@types/express": "^4.0.35",
"@types/fs-extra": "^3.0.2",
"@types/mongoose": "^4.7.13",
"@types/node": "^7.0.22",
"@types/passport": "^0.3.3",
"@types/passport-github": "^1.1.0",
"@types/pify": "0.0.28",
"@types/react": "^15.0.26",
"@types/react-dom": "^15.5.0",
"@types/react-hot-loader": "^3.0.1",
"@types/react-redux": "^4.4.41",
"@types/react-router": "^4.0.11",
"@types/react-router-dom": "^4.0.4",
"@types/redux": "^3.6.0",
"@types/semver": "^5.3.31",
"@types/webpack-env": "^1.13.0",
"awesome-typescript-loader": "^3.1.3",
"cross-env": "^5.0.0",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"postcss-loader": "^2.0.5",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "3.0.0-beta.7",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.1",
"styled-components": "2.0.0",
"typescript": "^2.3.3",
"url-loader": "^0.5.8",
"webpack": "^2.6.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.4.5"
}
}