-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.86 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "chart",
"version": "1.0.0",
"description": "A clone of the stock price chart service from Robinhood.com's stock detail page",
"repository": {
"type": "git",
"url": "https://github.com/Dr-Wing/chart.git"
},
"author": "",
"license": "MIT",
"engines": {
"node": "10.18.0"
},
"main": "./server/server.js",
"scripts": {
"dev:build": "webpack -w",
"dev:server": "nodemon server/server.js",
"dev:seed": "node seeds/start.js",
"dev": "npm-run-all --parallel dev:*",
"build": "webpack -p && docker build -t bellcd/robinhood:price-chart . && docker push bellcd/robinhood:price-chart",
"start": "nodemon server/server.js",
"start-docker": "node seeds/start.js && node server/server.js",
"seed": "node seeds/start.js",
"test:watch": "jest --watchAll --testPathIgnorePatterns=/node_modules/, ./tests.seeding.test.js",
"test": "jest --testPathIgnorePatterns=/node_modules/, ./tests.seeding.test.js",
"test:all": "jest",
"test:coverage": "jest --watchAll --coverage --colors --testPathIgnorePatterns=/node_modules/, ./tests.seeding.test.js",
"coverage": "open ./coverage/lcov-report/index.html",
"test:api": "jest --watch endpoints.test.js",
"test:utils": "jest --watch utils.test.js",
"test:app": "jest --watch app.test.js",
"test:chart": "jest --watch chart.test.js",
"test:charthat": "jest --watch charthat.test.js",
"test:verticalline": "jest --watch verticalline.test.js",
"test:pricewheel": "jest --watch pricewheel.test.js",
"test:CRUD": "jest --watch CRUD.test.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"test:seed": "jest --watch ./tests/seeding.test.js",
"write-csv": "node seeds/influx/influx-seed.js"
},
"dependencies": {
"@influxdata/influx": "^0.5.5",
"axios": "^0.19.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.7.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"fast-csv": "^4.0.2",
"influx": "^5.5.1",
"jquery": "^3.4.1",
"moment": "^2.24.0",
"mongodb": "^3.3.4",
"mongoose": "^5.7.11",
"pg": "^7.18.1",
"pg-copy-streams": "^2.2.2",
"npm-run-all": "^4.1.5",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"puppeteer": "^2.0.0",
"request": "^2.88.0",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"sinon-express-mock": "^2.2.1",
"sinon-mongoose": "^2.3.0",
"sinon-test": "^2.4.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}