-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.16 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.16 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
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
86
87
88
89
90
91
92
93
94
95
{
"name": "studentrant",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"engines": {
"node": "14.x.x"
},
"scripts": {
"coverage:e2e": "cross-env NODE_ENV=test c8 node ./.jasmine-run-e2e.js ./.jasmine.e2e.json ./__test__/**/*.mjs",
"coverage:unit": "cross-env NODE_ENV=test c8 node ./.jasmine-run-unit.js ./.jasmine.unit.json './src/**/*.mjs'",
"db:drop": "docker-compose -p dev -f docker/docker-compose.dev.yml down --remove-orphans",
"db:start": "docker-compose -p dev -f docker/docker-compose.dev.yml start",
"db:stop": "docker-compose -f docker/docker-compose.dev.yml stop",
"docker:down": "docker-compose -p dev -f docker/docker-compose.dev.yml -p test -f docker/docker-compose.test.yml down --remove-orphans",
"docker:up": "docker-compose -p dev -f docker/docker-compose.dev.yml up -d && ./scripts/replica-setup.sh",
"doc": "apidoc -i doc/ -o html-doc/",
"doc:watch": "nodemon --watch doc/ --exec yarn doc",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint --fix '**/*.js'",
"start:dev": "nodemon src/server.js --env dev",
"start:test": "node src/server.js --env test",
"start:dev:watch": "nodemon --exec node src/server.js --env dev",
"test": "docker-compose -p test -f docker/docker-compose.test.yml up -d && ./scripts/run-test.sh",
"yaml:lint": "yamllint -c ./.yamllint.yml ${PWD}"
},
"lint-staged": {
"**/*.js": "yarn lint:fix",
"*.yml": "yarn yaml:lint"
},
"husky": {
"hooks": {
"pre-push": "yarn test ; yarn lint",
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/studentrant/studentrant.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/studentrant/studentrant/issues"
},
"homepage": "https://github.com/studentrant/studentrant#readme",
"dependencies": {
"@elastic/elasticsearch": "^7.9.0",
"@log4js-node/logstash-http": "^1.0.0",
"@log4js-node/slack": "^1.0.0",
"@sendgrid/mail": "^6.5.5",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"c8": "^7.3.1",
"connect-mongodb-session": "^2.3.3",
"convict": "^6.2.2",
"cors": "^2.8.5",
"diff": "^4.0.2",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.6.0",
"helmet": "^3.23.3",
"log4js": "^6.4.0",
"mongoose": "^5.9.21",
"node-fetch": "^3.1.1",
"sendgrid": "^5.2.3",
"supertest": "^4.0.2",
"uid-generator": "^2.0.0",
"uuid": "^8.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-syntax-class-properties": "^7.12.1",
"@types/jasmine": "^3.9.1",
"apidoc": "^0.20.1",
"async": "^3.2.2",
"babel-eslint": "^11.0.0-beta.2",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"esm": "^3.2.25",
"faker": "^4.1.0",
"husky": "^4.2.5",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^4.2.1",
"lint-staged": "^10.3.0",
"lorem-ipsum": "^2.0.3",
"nodemon": "^2.0.12"
}
}