-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.41 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
{
"name": "esx-demo",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "David Mark Clements <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"transpile:client": "babel --ignore src/client/sw.js -d dist/client src/client",
"transpile:server": "babel -d dist/server src/server/page.html.jsx",
"transpile:all": "npm run transpile:server && npm run transpile:client",
"prebuild": "rm -rf coverage/* dist/*; mkdir -p coverage/badges dist/{client,server};",
"build": "npm run build:client && npm run build:server",
"build:client": "BUILDING=true webpack",
"build:server": "npm run transpile:all && cp src/server/*.js dist/server",
"optimized": "node optimized-src/server",
"unoptimized": "node dist/server",
"start": "node optimized-src/server",
"bench": "node bench.js"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run lint -- --fix",
"git add"
]
},
"dependencies": {
"esx": "^2.0.3",
"fastify": "^1.13.3",
"fastify-compress": "^0.7.1",
"fastify-static": "^1.0.0",
"history": "^4.7.2",
"memory-cache": "^0.2.0",
"node-fetch": "^2.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rss-parser": "^3.7.0",
"sanitize-html": "^1.20.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"autocannon": "^3.2.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.11.1",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.2",
"eslint-plugin-react-hooks": "0.0.0",
"eslint-plugin-standard": "^4.0.0",
"gh-badges": "^2.1.0",
"husky": "^1.3.1",
"lighthouse": "^3.2.1",
"lint-staged": "^8.1.0",
"prettier": "1.15.3",
"puppeteer": "^1.11.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"wait-on": "^3.2.0",
"webpack": "^4.28.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.0",
"workbox-webpack-plugin": "^3.6.3"
}
}