-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.6 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.6 KB
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
{
"name": "ndbs",
"version": "1.0.0",
"private": true,
"dependencies": {
"axios": "^0.24.0",
"csvtojson": "^2.0.10",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"franc": "^6.0.0",
"got": "^11.8.3",
"mariadb": "^2.5.4",
"mongodb": "^4.2.1",
"mongoose": "^6.0.8",
"needle": "^3.0.0",
"node-notifier": "^10.0.0",
"nodemon": "^2.0.13",
"oauth-1.0a": "^2.2.6",
"open": "^8.4.0",
"path": "^0.12.7",
"react": "^17.0.2",
"react-table": "^7.7.0",
"sequelize": "^6.6.5",
"styled-components": "^5.3.1",
"swagger-jsdoc": "^6.1.0",
"swagger-ui": "^3.52.3",
"swagger-ui-express": "^4.2.0",
"twit": "^2.2.11"
},
"scripts": {
"start-docker-compose-dev": "docker-compose -f docker-compose-dev.yml up -d",
"stop docker-compose-dev": "docker-compose -f docker-compose-dev.yml down",
"start": "node --max_old_space_size=4096 routes/index.js",
"start-dev": "nodemon routes/index.js",
"install-app": "npm i && npm audit fix && cd static && npm install && npm audit fix && npm run build-react",
"start-docker-compose-app": "docker-compose up -d",
"stop docker-compose-app": "docker-compose down",
"start-frontend": "cd static && npm run start-react",
"build": "cd ./static && npm run build-react",
"format": "prettier --config .prettierrc --write \"**/*.+(js|jsx|json|css|md)\""
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"prettier": "^2.4.1"
}
}