-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.24 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
{
"name": "weekly-bestofjs",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "react-static start",
"stage": "react-static build --staging",
"build": "react-static build && npm run build-rss",
"clean": "rm -rf ./dist",
"serve": "serve dist -p 3000",
"test": "node src/utils/fetch-newsletters.spec.js",
"weekly-step1": "DEBUG=bestofjs node -r esm scripts/step1-build-rankings",
"weekly-step2": "DEBUG=bestofjs node -r esm scripts/step2-create-campaign",
"build-rss": "node -r esm scripts/rss"
},
"dependencies": {
"@reach/router": "^1.2.1",
"babel-plugin-styled-components": "^1.10.0",
"dotenv": "^6.0.0",
"esm": "^3.0.55",
"fs-extra": "^6.0.1",
"got": "^9.6.0",
"jdown": "0.6.4",
"numeral": "^2.0.6",
"pretty-bytes": "^5.1.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-static": "7.0.10",
"react-static-plugin-reach-router": "^7.0.10",
"react-static-plugin-styled-components": "7.0.10",
"styled-components": "4.1.3",
"tinytime": "^0.2.6",
"xmlbuilder": "^10.0.0"
},
"devDependencies": {
"eslint-config-react-tools": "1.x.x",
"lodash": "^4.17.15",
"mjml": "^4.0.5",
"serve": "9.3.0"
}
}