-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
143 lines (143 loc) · 4.12 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "medialab-website-api",
"private": true,
"version": "1.0.0",
"description": "The website's CMS API.",
"main": "index.js",
"scripts": {
"build": "node ./scripts/build.js",
"clean": "rm -rf build && rm -rf wbuild && rm -rf .cache",
"dev": "concurrently --names api,admin -c blue,green \"npm run dev:api\" \"npm run dev:admin\"",
"dev:api": "nodemon api/server.js",
"dev:admin": "cd admin && npm run dev",
"docker:start": "npm run clean && npm start",
"dump": "node ./scripts/dump.js",
"flux": "node ./scripts/flux-github.js && node ./scripts/flux-twitter.js",
"install:admin": "cd admin && npm i",
"load": "node ./scripts/load.js",
"postinstall": "npm run install:admin",
"prettier": "prettier --write '**/*.js' && prettier --write --parser scss 'site/assets/scss/**/*.scss'",
"reinstall": "rm -rf ./admin/node_modules && rm -rf ./node_modules && npm i",
"serve": "npm run build && http-server -p 8000 ./wbuild -o",
"start": "node api/server.js",
"start:fast": "node api/server.js --bypass-auth --no-cron --no-precompute-covers",
"upgrade:prod:checks": "npm run build",
"upgrade:pprd": "git checkout staging && git pull && git merge master && git push && git checkout master",
"upgrade:prod": "npm run upgrade:prod:checks && npm run upgrade:prod:force",
"upgrade:prod:force": "npm run upgrade:pprd && git checkout prod && git pull && git merge staging && git push && git checkout master"
},
"contributors": [
{
"name": "JulieBlanc",
"url": "https://github.com/JulieBlanc"
},
{
"name": "BenjmnG",
"url": "https://github.com/BenjmnG"
},
{
"name": "farjasju",
"url": "https://github.com/farjasju"
},
{
"name": "jri-sp",
"url": "https://github.com/jri-sp"
},
{
"name": "paulgirard",
"url": "https://github.com/paulgirard"
},
{
"name": "robindemourat",
"url": "https://github.com/robindemourat"
},
{
"name": "oncletom",
"url": "https://github.com/oncletom"
},
{
"name": "boogheta",
"url": "https://github.com/boogheta"
},
{
"name": "Yomguithereal",
"url": "http://github.com/Yomguithereal"
},
{
"name": "AmelieVRL",
"url": "https://github.com/AmelieVRL"
},
{
"name": "mydu",
"url": "https://github.com/mydu"
}
],
"license": "AGPL-3.0-only",
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"ajv": "^6.12.5",
"assign-deep": "^1.0.1",
"async": "^3.2.0",
"basic-auth": "^2.0.1",
"cached-request": "^1.3.0",
"cheerio": "^1.0.0-rc.3",
"chokidar": "^3.4.2",
"classnames": "^2.2.6",
"config": "^3.3.2",
"config-secrets": "^1.0.6",
"cron": "^1.8.2",
"cssmin": "^0.4.3",
"csv-parse": "4.16.2",
"csv-write-stream": "^2.0.0",
"date-fns": "^2.16.1",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"express-session": "^1.17.0",
"fs-extra": "^9.0.1",
"graphology": "^0.18.0",
"html-entities": "^1.2.1",
"image-size": "^0.9.1",
"is-url": "^1.2.4",
"json-server": "^0.16.2",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.20",
"mime-types": "^2.1.26",
"mnemonist": "^0.38.0",
"node-sass": "^4.13.1",
"object-hash": "^2.0.3",
"pandemonium": "^1.4.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^6.1.0",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"sharp": "^0.23.4",
"simple-git": "^1.132.0",
"slug": "^0.9.4",
"socket.io": "^2.3.0",
"talisman": "^1.1.4",
"uuid": "^3.4.0",
"yargs": "^16.0.3"
},
"devDependencies": {
"@yomguithereal/prettier-config": "^1.1.0",
"concurrently": "^4.1.1",
"csv-stringify": "^5.5.1",
"http-server": "^0.12.1",
"nodemon": "^1.19.4",
"png-js": "^0.1.1",
"prettier": "^2.1.2"
},
"nodemonConfig": {
"ignore": [
"admin/*",
"build/*",
"data/*",
"site/*"
]
},
"prettier": "@yomguithereal/prettier-config"
}