-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.86 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "pyramid-irc",
"version": "0.4.0",
"description": "Web-based IRCv3 client with bouncer, and support for Twitch features",
"author": "Andy Graulund <[email protected]>",
"license": "MIT",
"preferGlobal": true,
"main": "pyramid.js",
"engines": {
"node": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/graulund/pyramid.git"
},
"scripts": {
"start": "node pyramid.js",
"dev": "npm run webpack:dev",
"prod": "node scripts/bumpBuildNumber.js && npm run webpack:prod",
"webpack:dev": "webpack --config webpack.dev.config.js --watch",
"webpack:prod": "webpack --config webpack.prod.config.js",
"lint:server": "eslint -c .eslintrc.server.js pyramid.js server/ serverplugins/ scripts/; exit 0",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"async": "^2.4.1",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.17.2",
"cookie": "^0.3.1",
"ejs": "^2.5.6",
"express": "^4.15.3",
"express-partials": "^0.3.0",
"get-folder-size": "^1.0.0",
"irc-framework": "https://github.com/graulund/irc-framework/tarball/master",
"lodash": "^4.17.4",
"long": "^3.2.0",
"mkdirp": "^0.5.1",
"moment-timezone": "^0.5.13",
"optional": "^0.1.3",
"querystring": "^0.2.0",
"request": "^2.81.0",
"sanitize-filename": "^1.6.1",
"socket.io": "^2.0.1",
"sodium": "^2.0.1",
"sqlite3": "^3.1.8",
"uuid": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-exponentiation-operator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.2",
"emoji-regex": "^6.5.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"fbjs": "^0.8.12",
"intersection-observer": "^0.2.1",
"linkify-it": "^2.0.3",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.5",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-perf": "^15.4.2",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-timeago": "3.2.1",
"react-tipsy": "^0.5.0",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"redux-saga": "^0.15.3",
"sass-loader": "^6.0.5",
"webpack": "^2.6.0",
"why-did-you-update": "0.0.8"
}
}