forked from edwinthinks/inspiration-ipsum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "inspiration-ipsum",
"version": "1.0.0",
"description": "A lorem ipsum generator using inspiration quotes hosted on a webpage.",
"main": "index.js",
"scripts": {
"build": "tsc",
"develop": "ts-node-dev --respawn --transpileOnly ./src/app.ts",
"test": "mocha -r ./node_modules/ts-node/register 'tests/**/*.{ts,tsx}' --exit",
"lint": "./node_modules/.bin/eslint ./src/**/*.ts --fix",
"format": "prettier --write '**/*.{ts,json,md}'",
"validate-lint": "npm run lint && npm run format -- --list-different"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edwinthinks/inspiration-ipsum.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/edwinthinks/inspiration-ipsum/issues"
},
"homepage": "https://github.com/edwinthinks/inspiration-ipsum#readme",
"dependencies": {
"express": "^4.17.1",
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/express": "^4.17.2",
"@types/mocha": "^5.2.7",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.6.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"mocha": "^6.2.2",
"prettier": "1.19.1",
"supertest": "^4.0.2",
"ts-node": "^8.5.0",
"ts-node-dev": "^1.0.0-pre.44"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write",
"git add"
],
"*.{js,ts}": [
"eslint --fix",
"git add"
]
}
}