-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "financial-sense",
"version": "1.0.0",
"description": "Financial Visualisation and Analysis",
"main": "index.js",
"scripts": {
"dev": "nodemon src-api/index.js",
"test": "jest --watch",
"testes": "npm run eslint && npm run jest",
"eslint": "eslint src-api/. --config .eslintrc.json",
"start": "node src-api/index.js",
"jest": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ogecko/financial-sense.git"
},
"author": "David Morrison",
"license": "MIT",
"bugs": {
"url": "https://github.com/ogecko/financial-sense/issues"
},
"homepage": "https://github.com/ogecko/financial-sense#readme",
"dependencies": {
"@feathersjs/authentication": "^4.4.1",
"@feathersjs/authentication-local": "^4.4.1",
"@feathersjs/authentication-oauth": "^4.4.1",
"@feathersjs/configuration": "^4.4.1",
"@feathersjs/errors": "^4.4.1",
"@feathersjs/express": "^4.4.1",
"@feathersjs/feathers": "^4.4.1",
"@feathersjs/socketio": "^4.4.1",
"@feathersjs/transport-commons": "^4.4.1",
"apollo-datasource-rest": "^0.6.9",
"apollo-server-express": "^2.14.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-nedb": "^5.1.0",
"helmet": "^3.21.2",
"lodash": "^4.17.15",
"nedb": "^1.8.0",
"serve-favicon": "^2.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"axios": "^0.19.0",
"eslint": "^6.7.2",
"jest": "^24.9.0",
"nodemon": "^1.19.4"
}
}