-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
{
"name": "node-hisp",
"version": "1.0.0",
"description": "A HISP implementation written in Node.JS",
"main": "server.js",
"repository": "https://github.com/reesmanp/node-hisp",
"author": "Paul Reesman <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack --progress --colors --display-error-details",
"dev": "npm run dev:build && npm run start",
"dev:build": "npm run build -- --mode development",
"eslint": "eslint **/*.js",
"eslint:fix": "eslint **/*.js --fix",
"prod": "NODE_ENV=production npm run prod:build && npm run start",
"prod:build": "npm run build -- --mode production",
"start": "nodemon server.js",
"test": "nyc mocha --reporter spec"
},
"exclude": [
"**/test/**/*.js"
],
"dependencies": {
"ascii-art": "^1.4.3",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"date-and-time": "^0.6.2",
"eslint": "^4.18.2",
"good": "^8.1.0",
"good-console": "^7.1.0",
"good-squeeze": "^5.0.2",
"hapi": "^17.2.2",
"hapi-auth-jwt2": "^8.0.0",
"hapi-routes": "^5.0.0",
"immutable": "^3.8.2",
"inert": "^5.1.0",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"moment": "^2.21.0",
"mongoose": "^5.0.10",
"muicss": "^0.9.36",
"node-env-file": "^0.1.8",
"nodemailer": "^4.6.2",
"nodemon": "^1.17.2",
"randomstring": "^1.1.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-immutable": "^4.0.0",
"scooter": "^5.0.0",
"smtp-server": "^3.4.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babili-webpack-plugin": "^0.1.2",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"css-loader": "^0.28.10",
"mocha": "^5.0.4",
"nyc": "^11.6.0",
"style-loader": "^0.20.3",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11"
}
}