-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "koyofea_backend",
"version": "1.0.0",
"description": "node api backend for koyofea",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "export NODE_ENV=test|| set NODE_ENV=test&& mocha --compilers js:babel-core/register --no-deprecation",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/index.js --no-deprecation"
},
"keywords": [
"koyofea",
"backend"
],
"author": "Ankit Choudhary, Ravi Teja Gannavarapu",
"license": "MIT",
"dependencies": {
"babel-preset-env": "^1.7.0",
"bcrypt": "^3.0.2",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-validator": "^5.2.0",
"jwt-simple": "^0.5.1",
"moment": "^2.22.2",
"mysql": "^2.15.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"promise-mysql": "^3.2.1",
"request-promise": "^4.2.2",
"sqlstring": "^2.3.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"chai": "^4.1.2",
"colors": "^1.3.0",
"gulp": "^4.0.0",
"mocha": "^5.2.0",
"morgan": "^1.9.0",
"request": "^2.88.0",
"rimraf": "^2.6.2",
"standard": "^11.0.1",
"supertest": "^3.1.0"
},
"standard": {
"ignore": [
"/test/*.js"
]
}
}