-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.86 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "nyc ./node_modules/.bin/mocha --timeout 100000 --require @babel/register --require @babel/polyfill server/test --exit || true",
"start": "babel-node server/app.js",
"dev": "webpack-dev-server --mode development --open",
"start:prod": "node dist/app.prod.js",
"start:prod1": "node dist/server/app.prod.js",
"build": "babel server -d dist",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"coverage": "nyc report --reporter=text-lcov | coveralls && nyc report --reporter=lcov"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"eslint": "^5.9.0",
"html-webpack-plugin": "^3.2.0",
"should": "^13.2.3",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@babel/cli": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/register": "^7.0.0",
"@sendgrid/mail": "^6.3.1",
"assert": "^1.4.1",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^5.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"cors": "^2.8.5",
"coveralls": "^3.0.2",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"istanbul": "^0.4.5",
"joi": "^14.0.6",
"jsdoc": "^3.5.5",
"jsonwebtoken": "^8.4.0",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"nodemailer": "^4.6.8",
"nyc": "^13.1.0",
"pg": "^7.6.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"serve": "^10.1.1",
"styled-components": "^4.1.3",
"swagger-ui-express": "^4.0.1",
"uuidv4": "^2.0.0"
}
}