This repository has been archived by the owner on Aug 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.65 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
{
"dependencies": {
"aws-serverless-express": "^3.1.3",
"express": "^4.16.3",
"front-matter": "^2.2.0",
"highlight.js": "^9.12.0",
"next": "^5.1.0",
"nprogress": "^0.2.0",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"react-ga": "^2.3.5",
"serverless": "^1.26.1",
"serverless-plugin-warmup": "^3.6.0-rc.1",
"serverless-prune-plugin": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-flow": "^6.23.0",
"cross-env": "^5.1.6",
"eslint": "^5.0.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"flow-bin": "^0.78.0",
"greenkeeper-lockfile": "^1.15.1",
"jest": "^23.1.0",
"prettier": "^1.13.4",
"react-test-renderer": "^16.4.0",
"serverless-offline": "^3.25.1",
"webpack-bundle-analyzer": "^2.13.1"
},
"scripts": {
"analyze": "cross-env ANALYZE=1 next build",
"build": "next build",
"dev": "NODE_ENV=development node services/Server.js",
"lint": "eslint .",
"publish": "node .articles/compile.js",
"start": "NODE_ENV=production yarn serverless offline",
"test": "jest",
"test-ci": "yarn run lint && yarn run typecheck && yarn run test -- --ci --color",
"typecheck": "flow check --color=always"
}
}