This repository has been archived by the owner on Jul 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "authorice-api",
"version": "1.0.0",
"description": "Inha Univ. ICE Student Association Single Sign-On Service",
"keywords": [
"inha-university",
"ice",
"engineering",
"authorization",
"authentication",
"single-sign-on",
"service"
],
"dependencies": {
"argon2": "^0.25.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"cross-env": "^7.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"mysql2": "^2.1.0",
"rotating-file-stream": "^2.0.2",
"sequelize": "^5.21.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"sqlite3": "^4.1.1",
"supertest": "^4.0.2"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/server",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ignore-path .gitignore .",
"start": "cross-env NODE_ENV=production node src/server",
"test": "cross-env NODE_ENV=test mocha --exit --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inha-ice/authorice.git"
},
"contributors": [
"Seungjae Park <[email protected]>"
],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/inha-ice/authorice/issues"
},
"homepage": "https://github.com/inha-ice/authorice#readme",
"private": true
}