-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
33 lines (33 loc) · 982 Bytes
/
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
{
"name": "react-emails-example",
"version": "1.0.0",
"private": true,
"main": "./server/createEmail.js",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-react-app": "^3.1.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-react-app": "0.3.0",
"eslint-plugin-flowtype": "2.21.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"node-fetch": "^2.1.2",
"react-scripts": "1.1.4"
},
"dependencies": {
"date-fns": "^1.28.3",
"react": "^16.3.1",
"react-dom": "^16.3.1"
},
"scripts": {
"install": "NODE_ENV=production babel src --out-dir lib",
"build": "NODE_ENV=production babel src --out-dir lib",
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}