forked from freeCodeCamp/boilerplate-project-timestamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.25 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
{
"name": "fcc_timestamp-microservice",
"version": "1.0.0",
"description": "An FCC Backend Challenge",
"keywords": [
"node",
"hyperdev",
"express",
"freecodecamp"
],
"homepage": "https://github.com/dkleber89/fCC_Timestamp-Microservice",
"bugs": {
"url": "https://github.com/dkleber89/fCC_Timestamp-Microservice/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dkleber89/fCC_Timestamp-Microservice.git"
},
"license": "MIT",
"author": {
"name": "dkleber89",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/dkleber89/"
},
"contributors": [
{
"name": "dkleber89",
"email": "[email protected]"
}
],
"main": "server.mjs",
"type": "module",
"scripts": {
"start": "node --experimental-modules server.mjs"
},
"dependencies": {
"cors": "2.8.5",
"express": "4.17.1"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jest": "23.4.0",
"eslint-plugin-prettier": "3.1.2",
"jest": "24.9.0",
"prettier": "1.19.1"
},
"engines": {
"node": "4.4.5"
}
}