-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "alvarcarto-admin-ui",
"version": "1.0.0",
"private": true,
"description": "Admin UI to manage Alvar Carto",
"proxy": {
"/api": {
"target": "http://localhost:4002"
}
},
"scripts": {
"start-prod": "node src/server/index.js",
"start": "concurrently \"npm run start-backend\" \"npm run start-frontend\"",
"start-backend": "nodemon --watch ./src/server -e js ./src/server/index.js",
"start-frontend": "react-scripts start",
"lint": "echo \"Error: no linter specified\"",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "echo \"Error: no test specified\"",
"postinstall": "npm run build"
},
"author": "Alvar Carto",
"license": "UNLICENSED",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"express": "^4.16.3",
"express-basic-auth": "^1.1.5",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"morgan": "^1.9.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-popper": "^1.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^1.1.4",
"react-spinners": "^0.3.3",
"react-transition-group": "^2.4.0",
"reactstrap": "^6.3.1",
"request": "^2.87.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"concurrently": "^3.6.1",
"dotenv": "^6.0.0",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"nodemon": "^1.18.3"
}
}