-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "timestamp-microservice-absk",
"version": "1.0.0",
"description": "Get unix and natural timestamps",
"main": "build/server.js",
"scripts": {
"start": "run-s build start:prod",
"start:prod": "cross-env NODE_ENV=production node build/server.js",
"prebuild": "rimraf build",
"build": "cross-env NODE_ENV=production babel -d build -D src"
},
"dependencies": {
"express": "^4.16.3",
"app-root-path": "^2.0.1",
"moment": "^2.22.0",
"lodash": "^4.17.5",
"response-time": "^2.3.2",
"helmet": "^3.12.0",
"cross-env": "^5.1.4",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2",
"express-rate-limit": "^2.11.0",
"ms": "^2.1.1",
"rate-limit-redis": "^1.4.0",
"redis": "^2.8.0",
"totoro-node": "^1.0.24",
"source-map-support": "^0.5.4",
"@stamp/it": "^1.0.1",
"@stamp/privatize": "^1.0.1",
"@stamp/named": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-babili": "^1.0.0",
"babel-plugin-source-map-support": "^2.0.1",
"babel-plugin-add-module-exports": "^0.2.1"
},
"engines": {
"node": "6.9.1"
},
"repository": {
"url": "https://gomix.com/#!/project/timestamp-microservice-absk"
},
"keywords": [
"microservice",
"unix",
"freecodecamp",
"fcc",
"date",
"timestamp",
"api",
"abhisekp",
"time",
"human",
"natural",
"moment"
],
"license": "MIT",
"babel": {
"sourceMap": "inline",
"plugins": [
"source-map-support",
"add-module-exports",
"lodash"
],
"presets": [
[
"latest",
{
"loose": true
}
],
"stage-0"
]
},
"env": {
"production": {
"presets": [
"babili"
]
}
}
}