-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.06 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
{
"name": "movies-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm-run-all clean compile:all",
"clean": "rimraf ./build && mkdir build",
"compile:api": "babel ./api --out-dir build/api",
"compile:models": "npm-run-all compile:api",
"compile:seed": "babel ./seedData --out-dir build/seedData",
"compile:authenticate": "babel ./authenticate --out-dir build/authenticate",
"compile:tmdb-api": "babel ./api --out-dir build/api",
"compile:routes": "babel ./routes --out-dir build/routes ",
"compile:app": "babel index.js --out-dir build/",
"compile:db": "babel db.js --out-dir build/",
"compile:copy": "cp -r ./node_modules/ build/node_modules && cp -r ./public build/public",
"compile:all": "npm-run-all compile:models compile:seed compile:app compile:db compile:copy compile:authenticate compile:tmdb-api",
"postinstall": "rimraf ./build && npm run compile:all",
"start": "nodemon --exec babel-node index.js",
"test": "cross-env NODE_ENV=test mocha "
},
"author": "Huayu Qin",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-inline-json-import": "^0.3.2",
"chai": "^4.0.2",
"cross-env": "^6.0.3",
"eslint": "^7.14.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"supertest": "^4.0.2"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"bcrypt-nodejs": "0.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"loglevel": "^1.7.1",
"mongoose": "^5.11.7",
"node-fetch": "^2.6.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"rimraf": "^3.0.0",
"swagger-jsdoc": "^6.0.1",
"swagger-ui-express": "^4.1.6",
"yamljs": "^0.3.0"
}
}