-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
129 lines (129 loc) · 3.32 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "uclaradio",
"version": "0.0.0",
"description": "The code for uclaradio.com.",
"license": "AGPL-3.0",
"homepage": "uclaradio.com",
"bugs": {
"url": "https://github.com/uclaradio/uclaradio/issues",
"email": "radio.web@media.ucla.edu"
},
"repository": {
"type": "git",
"url": "https://github.com/uclaradio/uclaradio.git"
},
"private": true,
"scripts": {
"start": "node ./bin/www",
"watch": "nodemon ./bin/www --ignore public/",
"dev": "concurrently --kill-others 'yarn run watch' 'yarn run assets' --names '💻,📦' --prefix name",
"assets": "webpack --watch --display-max-modules 0",
"precommit": "lint-staged",
"test": "jest",
"fill-blog-db": "mongoimport --jsonArray --db uclaradio --collection blogposts --file categorized-blogposts.json",
"postmerge": "yarnhook",
"postcheckout": "yarnhook",
"postrewrite": "yarnhook"
},
"babel": {
"presets": [
"env",
"react"
]
},
"eslintConfig": {
"extends": "uclaradio"
},
"stylelint": {
"extends": "stylelint-config-uclaradio"
},
"prettier": {
"overrides": [
{
"files": "*.js",
"options": {
"singleQuote": true,
"trailingComma": "es5"
}
}
]
},
"lint-staged": {
"*.{js,scss,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"async": "^2.5.0",
"bcrypt": "^2.0.1",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"collections": "^5.0.7",
"cookie-parser": "^1.4.3",
"debug": "^3.0.0",
"express": "^4.15.4",
"express-session": "^1.15.5",
"greenlock-express": "^2.0.11",
"jade": "^1.11.0",
"jimp": "^0.2.28",
"mime": "^1.3.6",
"moment": "^2.24.0",
"mongoose": "^4.11.6",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"nodemailer": "^4.0.1",
"public-google-calendar": "^0.2.0",
"rc-slider": "^8.6.0",
"react": "^0.14.7",
"react-bootstrap": "^0.28.3",
"react-checkbox-list": "0.0.2",
"react-cookie": "^1.0.4",
"react-dom": "^0.14.7",
"react-ga": "^2.1.2",
"react-html-parser": "^2.0.2",
"react-loading": "0.0.9",
"react-rectangle": "^1.3.3",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-router-bootstrap": "^0.23.1",
"react-slick": "^0.14.5",
"react-spinkit": "^2.1.1",
"reactable": "^0.14.1",
"redux": "^3.6.0",
"requestify": "^0.2.3",
"serve-favicon": "^2.2.0",
"socket.io": "^2.0.3",
"spdy": "^3.3.2",
"trianglify": "^2.0.0",
"tumblr.js": "^2.0.0",
"xml2js": "^0.4.17",
"yarnhook": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.20.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.16.0",
"concurrently": "^3.4.0",
"css-loader": "^0.28.7",
"eslint": "^4.4.1",
"eslint-config-uclaradio": "^1.0.17",
"htmlhint": "^0.11.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"json-loader": "^0.5.7",
"jsx-loader": "^0.13.2",
"lint-staged": "^4.0.3",
"node-sass": "^4.7.2",
"nodemon": "^1.12.1",
"prettier": "^1.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"stylelint": "^8.0.0",
"stylelint-config-uclaradio": "^1.0.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
}
}