-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.03 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
{
"name": "til.mudit.xyz",
"version": "1.0.0",
"description": "A collection of my TILs",
"private": "true",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint now-dev.js webpack.config.js api/ client/ helpers/",
"build": "webpack",
"build:dev": "webpack --mode development --watch",
"dev": "nodemon --watch lambda now-dev.js",
"deploy": "now --confirm --token=\"$NOW_TOKEN\" -m \"branch=$CIRCLE_BRANCH\" -m \"build=$CIRCLE_BUILD_URL\" -m \"commit=$CIRCLE_SHA1\" -m \"pr=${CIRCLE_PULL_REQUEST:-'No PR. See branch'}\""
},
"keywords": [
"til",
"react",
"service",
"worker",
"pwa",
"contentful",
"webpack",
"zeit",
"now",
"zeithq",
"lambda",
"ssr"
],
"author": "Mudit Ameta",
"license": "MIT",
"dependencies": {
"@sentry/node": "^4.4.2",
"contentful": "^7.0.5",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.1",
"react-markdown": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"express": "^4.16.4",
"husky": "^1.2.1",
"jest": "^24.8.0",
"lint-staged": "^8.1.0",
"morgan": "^1.9.1",
"nodemon": "^1.18.9",
"prettier": "1.15.3",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"engines": {
"node": "12.x"
},
"jest": {
"roots": [
"<rootDir>/api/",
"<rootDir>/client/"
],
"moduleFileExtensions": [
"js",
"json"
],
"testMatch": [
"**/__tests__/**/*-test.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,md,css}": [
"prettier --write",
"git add"
]
}
}