-
-
Notifications
You must be signed in to change notification settings - Fork 582
/
package.json
52 lines (52 loc) · 1.07 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
{
"name": "jsonplaceholder",
"version": "0.3.3",
"description": "A simple fake REST API server for testing and prototyping.",
"keywords": [
"fake",
"JSON",
"server",
"REST",
"dummy",
"data",
"API",
"testing",
"prototyping"
],
"homepage": "http://jsonplaceholder.typicode.com",
"repository": {
"type": "git",
"url": "https://github.com/typicode/jsonplaceholder.git"
},
"scripts": {
"build": "node build",
"build:watch": "nodemon --watch build.js --watch templates -e js,md,html build.js",
"start": "node index",
"test": "node test/app"
},
"dependencies": {
"clone": "^2.1.2",
"json-server": "^0.16.0",
"marked": "^0.8.0"
},
"devDependencies": {
"Faker": "~0.7.2",
"husky": "^4.2.2",
"nodemon": "^2.0.2",
"pupa": "^2.0.1",
"rosie": "~2.0.1",
"showdown": "^1.9.1",
"supertest": "^4.0.2",
"tape": "^4.13.0",
"underscore": "~1.12.1"
},
"engines": {
"node": "14.x"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}