forked from typicode/jsonplaceholder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.24 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
{
"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": "unset JSON_DB READ_ONLY && node test/app",
"start:notReadOnly": "READ_ONLY=false npm start",
"generate-db": "node seed.js",
"generate-db-ghyt-api": "node data/seed-ghyt-api.js"
},
"dependencies": {
"clone": "^1.0.2",
"json-server": "^0.14.1",
"marked": "^0.6.2"
},
"devDependencies": {
"Faker": "~0.5.11",
"husky": "^2.4.1",
"nodemon": "^1.19.1",
"pupa": "^2.0.0",
"rosie": "~1.6.0",
"showdown": "^1.9.0",
"supertest": "^3.1.0",
"tape": "^4.5.1",
"underscore": "~1.5.2"
},
"engines": {
"node": "10.x"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}