-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.11 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
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
{
"author": "Zain Abidi",
"bugs": {
"url": "https://github.com/zainxyz/thriller/issues"
},
"dependencies": {
"@babel/node": "7.2.2",
"@babel/polyfill": "7.0.0",
"@babel/register": "7.0.0",
"@babel/runtime": "7.1.5",
"bcrypt": "3.0.3",
"compression": "1.7.3",
"config": "3.0.1",
"date-fns": "1.30.1",
"express": "4.16.4",
"fawn": "2.1.5",
"helmet": "3.15.0",
"joi": "14.3.1",
"joi-objectid": "2.0.0",
"joi-password-complexity": "2.0.1",
"jsonwebtoken": "8.4.0",
"lodash": "4.17.11",
"mongoose": "5.4.2",
"uuid": "3.3.2"
},
"description": "An online movie and game rental service",
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-decorators": "7.1.6",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-transform-destructuring": "7.1.3",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.2.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-loader": "8.0.4",
"babel-plugin-dynamic-import-node": "2.2.0",
"babel-plugin-module-resolver": "3.1.1",
"chalk": "2.4.2",
"eslint": "5.6.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-react-app": "3.0.6",
"eslint-import-resolver-node": "0.3.2",
"eslint-loader": "2.1.1",
"eslint-plugin-babel": "5.2.1",
"eslint-plugin-flowtype": "2.50.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-mocha": "5.2.0",
"eslint-plugin-react": "7.11.1",
"jest": "23.6.0",
"nodemon": "1.18.9",
"prettier": "1.14.2",
"supertest": "3.3.0",
"winston": "3.1.0",
"winston-mongodb": "4.0.3"
},
"devEngines": {
"node": ">=8.0.0",
"npm": ">=6.0.0"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"homepage": "https://github.com/zainxyz/thriller#readme",
"keywords": [
"movies",
"games",
"nodejs",
"rentals",
"movie rentals",
"game rentals"
],
"license": "SEE LICENSE IN LICENSE",
"main": "index.js",
"name": "thriller",
"repository": {
"type": "git",
"url": "git+https://github.com/zainxyz/thriller.git"
},
"scripts": {
"coverage": "npm run test -- --coverage",
"dev": "NODE_ENV=development babel-node --presets @babel/preset-env ./server/index.js",
"lint": "eslint ./server",
"start": "babel-node --presets @babel/preset-env ./server/index.js",
"test": "NODE_ENV=test jest --detectOpenHandles",
"watch:dev": "NODE_ENV=development nodemon ./server/index.js --exec babel-node --presets @babel/preset-env",
"watch:test": "npm run test -- --watchAll"
},
"version": "1.0.0"
}