-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.67 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.67 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
51
52
53
54
55
56
57
58
59
{
"name": "SDC",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"start": "nodemon server/index.js",
"build-db": "psql -U miguelbuenviaje -f QANDA.sql",
"seed": "psql postgres -d atelier-raw -f database/overview.sql && node database/overview_seeder/index.js",
"reset": "psql postgres -d atelier-raw -f ETL/reset.sql && node ETL/testSku.js",
"migrate": "node-pg-migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeBase-U-S/SDC.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodeBase-U-S/SDC/issues"
},
"jest": {
"preset": "@trendyol/jest-testcontainers"
},
"homepage": "https://github.com/CodeBase-U-S/SDC#readme",
"dependencies": {
"@fast-csv/format": "^4.3.5",
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"csv": "^5.5.0",
"csv-parser": "^3.0.0",
"express": "^4.17.1",
"fast-csv": "^4.3.6",
"line-input-stream": "^1.0.1",
"morgan": "^1.10.0",
"node-pg-migrate": "^5.10.0",
"nodemon": "^2.0.7",
"pg": "^8.6.0",
"pg-copy-streams": "^5.1.1",
"postgres": "1.0.2"
},
"devDependencies": {
"@trendyol/jest-testcontainers": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^27.0.6",
"supertest": "^6.1.3"
}
}