-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·110 lines (110 loc) · 3.41 KB
/
package.json
File metadata and controls
executable file
·110 lines (110 loc) · 3.41 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@actbase/node-server",
"version": "1.0.30",
"description": "Node Server Framework",
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"author": {
"name": "Actbase LLC",
"email": "service@actbase.io"
},
"scripts": {
"build:src": "rm -rf ./lib && tsc -p src/tsconfig.json && babel lib --out-dir lib",
"build": "npm run build:src",
"prepublish": "npm run build",
"localinstall": "npm run build && cp -r ./lib /Users/suhanmoon/Projects/baba/baba-serv/node_modules/@actbase/node-server/"
},
"license": "MIT",
"keywords": [
"nodejs"
],
"homepage": "https://github.com/actbase/node-server",
"bugs": {
"url": "https://github.com/actbase/node-server/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/actbase/node-server.git"
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto-js": "^3.3.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.3",
"express-session": "^1.17.1",
"express-validator": "^6.4.1",
"form-data": "^3.0.0",
"handlebars": "^4.7.6",
"iconv-lite": "^0.5.1",
"image-size": "^0.8.3",
"immer": ">=8.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.*",
"moment": "^2.25.3",
"msgpack-js": "^0.3.0",
"node-cache": "^5.1.2",
"nodemon": "^2.0.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sequelize": "^6.5.1",
"session-file-store": "^1.4.0",
"socket.io": "^2.4.1",
"socket.io-adapter": "^2.3.1",
"socketio-jwt-auth": "^0.1.0",
"swagger-tools": "^0.10.4",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@types/cors": "^2.8.10",
"@types/crypto-js": "^4.0.1",
"@types/express": "^4.17.11",
"@types/express-fileupload": "^1.1.6",
"@types/lodash": "^4.14.149",
"@types/passport": "^1.0.6",
"@types/passport-jwt": "^3.0.5",
"@types/react": "^16.9.31",
"@types/react-dom": "^16.9.5",
"@types/react-native": "0.61.12",
"@types/socket.io": "^3.0.2",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"babel-eslint": "^10.0.3",
"babel-plugin-inline-import-data-uri": "^1.0.1",
"babel-plugin-root-import": "^6.5.0",
"babel-plugin-wildcard": "^6.0.0",
"esifycss": "^1.4.12",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react-native-shinpei": "^0.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-json": "^2.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-react-native": "^3.8.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
}
}