-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
{
"name": "mnet-api",
"version": "0.0.1",
"description": "M-NET API",
"homepage": "https://rayriffy.com",
"main": "build/main.js",
"private": true,
"repository": "[email protected]:rayriffy/mnet-api.git",
"author": "Phumrapee Limpianchop <[email protected]> (https://blog.rayriffy.com)",
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"dependencies": {
"backpack-core": "^0.8.4",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"expo-server-sdk": "^3.3.0",
"express": "^4.17.1",
"express-validator": "^6.1.1",
"gridfs-stream": "^1.1.1",
"husky": "^3.0.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.14",
"moment": "^2.24.0",
"mongoose": "^5.6.9",
"multer": "^1.4.2",
"multer-gridfs-storage": "^3.3.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"repo-latest-commit": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^5.2.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.2.0",
"prettier": "^1.18.2"
},
"scripts": {
"build": "backpack build",
"dev": "backpack",
"format": "prettier --write --no-semi --list-different './src/**/*.js'",
"lint": "eslint ./src/**/*.js",
"start": "cross-env NODE_ENV=production node ./build/main.js",
"test": "yarn build && cross-env MOCHA_TEST=true mocha ./test --timeout 5000 --exit"
}
}