-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.85 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
{
"name": "jewish-currents-static",
"description": "Jewish Currents Magazine static website",
"version": "1.0.0",
"author": "Jewish Currents",
"main": "index.js",
"private": true,
"license": "MIT",
"scripts": {
"build": "react-static build && netlify-lambda build lambda-src",
"clean": "rm -rf ./dist",
"copy": "cp src/lambda-src/subscribe.js src/lambda/subscribe.js",
"format": "prettier --write '**/*.js'",
"freshstart": "REFRESH_FILE_CACHE=true npm run start",
"lint": "eslint '**/*.{js,jsx}' --quiet",
"precommit": "lint-staged",
"serve": "serve dist -p 1111",
"start": "concurrently \"npm run start-app\" \"npm run start-lambda\"",
"start-app": "react-static start",
"start-lambda": "netlify-lambda serve lambda-src",
"stage": "react-static build --staging && netlify-lambda build lambda-src",
"migrate": "node scripts/migrate/index.js"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"axios": "^0.16.2",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"datocms-client": "^0.8.11",
"datocms-search": "^0.1.7",
"dotenv": "^6.2.0",
"fs-extra": "^5.0.0",
"js-cookie": "^2.2.0",
"lodash": "^4.17.5",
"object-fit-images": "^3.2.3",
"p-map": "^1.2.0",
"prop-types": "^15.6.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-ga": "^2.4.1",
"react-hot-loader": "^4.0.0-beta.21",
"react-router": "^4.2.0",
"react-static": "^5.5.14",
"react-stripe-checkout": "^2.6.3",
"stripe": "^5.8.0",
"striptags": "^2.2.1",
"uuid": "^3.2.1",
"wpapi": "^1.1.2"
},
"devDependencies": {
"autoprefixer": "^8.2.0",
"concurrently": "^3.5.1",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-tools": "1.x.x",
"extract-text-webpack-plugin": "^3.0.2",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"netlify-lambda": "^0.4.0",
"postcss-calc": "^6.0.1",
"postcss-color-function": "^4.0.1",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^7.0.0",
"postcss-custom-selectors": "^4.0.1",
"postcss-extend": "^1.0.5",
"postcss-font-family-system-ui": "^3.0.0",
"postcss-image-set-polyfill": "^0.4.4",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.3",
"postcss-media-minmax": "^3.0.0",
"postcss-nesting": "^4.2.1",
"postcss-object-fit-images": "^1.1.2",
"postcss-property-lookup": "^2.0.0",
"postcss-pseudo-class-any-link": "^4.0.0",
"postcss-selector-matches": "^3.0.1",
"postcss-selector-not": "^3.0.1",
"prettier": "^1.11.1",
"rucksack-css": "^1.0.2",
"serve": "^6.1.0"
},
"proxy": {
"/.netlify/functions": {
"target": "http://localhost:9000",
"pathRewrite": {
"^/\\.netlify/functions": ""
}
}
}
}