-
Notifications
You must be signed in to change notification settings - Fork 646
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "comments-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run clean && babel src -d dist",
"now-build": "npm run build",
"clean": "rimraf dist",
"db": "babel-node ./db/index.js",
"dev": "nodemon --exec babel-node ./src/index.js",
"start": "npm run clean && npm run build && npm run db && cd dist && node index.js",
"test": "jest src --watch",
"test:e2e": "jest ./__test__ --runInBand"
},
"author": "Bill Sourour <[email protected]>",
"license": "MIT",
"jest": {
"verbose": false,
"globalSetup": "./jest-setup.js",
"globalTeardown": "./jest-teardown.js",
"testEnvironment": "./jest-mongo.js"
},
"dependencies": {
"@devmastery/pipe": "^0.0.6",
"axios": "^0.18.0",
"babel-plugin-inline-dotenv": "^1.2.2",
"body-parser": "^1.18.3",
"cuid": "^2.1.6",
"express": "^4.16.4",
"ip-regex": "^4.0.0",
"is-valid-email": "0.0.4",
"mongodb": "^3.1.13",
"p-reduce": "^2.0.0",
"sanitize-html": "^1.20.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"babel-jest": "^24.4.0",
"dotenv": "^6.2.0",
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"faker": "^4.1.0",
"jest": "^24.3.1",
"mongodb-memory-server": "^4.0.2",
"nodemon": "^1.18.10",
"rimraf": "^2.6.3"
}
}