-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.02 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.02 KB
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
{
"name": "pu-user",
"version": "1.0.0",
"description": "microservices PUUser",
"main": "server/app.js",
"engines": {
"node": ">=8.9.1"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": "standard"
},
"scripts": {
"start": "node dist/build.js",
"test": "export NODE_ENV=test && mocha --timeout 10000 --compilers js:babel-core/register ./test/**/*.spec.js",
"jenkins": "npm test",
"dev": "export NODE_ENV=local && webpack --watch",
"compile": "babel --source-maps -d compile/ server/",
"build": "webpack"
},
"keywords": [
"PaidUp",
"user"
],
"author": "@paidUp",
"license": "private",
"dependencies": {
"aws": "0.0.3-2",
"body-parser": "^1.14.1",
"camelize": "^1.0.0",
"composable-middleware": "^0.3.0",
"compression": "^1.6.0",
"connect": "^3.6.6",
"cookie-parser": "^1.4.0",
"cors": "^2.8.4",
"errorhandler": "^1.5.0",
"express": "^4.13.4",
"fb": "^2.0.0",
"lodash": "^4.11.1",
"method-override": "^2.3.5",
"moment": "^2.20.1",
"mongoose": "^5.0.1",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"multer-s3": "^2.7.0",
"node-uuid": "^1.4.8",
"pmx": "^0.6.1",
"pu-common": "git+ssh://git@github.com:PaidUp/PUCommon.git#0.19.11"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-module-alias": "^1.6.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"faker": "^3.1.0",
"mocha": "^2.3.4",
"nodemon-webpack-plugin": "^0.1.6",
"should": "^7.1.1",
"supertest": "^1.1.0",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.6.0"
}
}