-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"name": "stock-screener-backend-app",
"version": "1.0.0",
"engines": {
"node": "16.0.0",
"npm": "7.22.0"
},
"scripts": {
"clean": "rm -rf build && mkdir build",
"build-babel": "babel -d ./build ./src -s",
"build": "npm run clean && npm run build-babel",
"start": "npm run build && node ./build/index.js",
"dev": "nodemon ./src/index.js --exec babel-node --presets @babel/preset-env",
"test": "jest --passWithNoTests",
"test-watch": "jest --passWithNoTests --watch"
},
"dependencies": {
"@babel/cli": "^7.15.7",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/runtime": "^7.15.4",
"core-js": "^3.18.2",
"cors": "2.8.5",
"dotenv": "7.0.0",
"express": "^4.17.1",
"fetch-retry": "^5.0.1",
"helmet": "^4.6.0",
"isomorphic-fetch": "^3.0.0",
"mongodb": "^3.1.6",
"morgan": "^1.10.0",
"regression": "^2.0.1",
"@babel/preset-env": "^7.15.8",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.2",
"jest": "^27.3.1",
"nodemon": "^1.19.1",
"supertest": "^6.1.6"
}
}