forked from the-advocacy-project/advocacy-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "TheAdvocacyProject",
"version": "1.0.0",
"engines": {
"node": "10.12.0"
},
"description": "# The Advocacy Project",
"main": "index.js",
"scripts": {
"build-watch": "parcel watch ./client/index.html",
"start-watch": "nodemon server/index.js",
"dev": "parcel client/index.html",
"build": "parcel build client/index.html",
"start": "NODE_ENV=production node server/index.js",
"heroku-postbuild": "npm run build"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"greeting": "^1.0.6",
"nodemailer": "^5.1.1",
"react": "^16.8.1",
"react-burger-menu": "^2.6.5",
"react-dom": "^16.8.1",
"react-router-dom": "^4.3.1",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"concurrently": "^4.1.0",
"eslint": "^4.19.1",
"nodemon": "^1.18.10",
"parcel-bundler": "^1.11.0"
}
}