-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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": "pixiedixie-api",
"version": "1.0.2",
"description": "Pixie & Dixie Dev Test API Demo",
"main": "dist/index.js",
"scripts": {
"prebuild": "eslint src/ --ext ts --fix --quiet",
"build": "tsc --declaration",
"production": "node .",
"start": "ts-node-dev --no-notify --respawn --transpileOnly src/index.ts",
"test": "jest --coverage",
"test:html": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dorious/pixiedixie-api.git"
},
"keywords": [
"gif",
"gifs",
"mem",
"mems",
"demo"
],
"author": "Dariusz Arciszewski",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dorious/pixiedixie-api/issues"
},
"homepage": "https://github.com/Dorious/pixiedixie-api#readme",
"dependencies": {
"axios": "^0.19.2",
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jest": "^24.9.1",
"@types/moxios": "^0.4.9",
"@types/node": "^13.1.8",
"@types/node-fetch": "^2.5.4",
"@types/sinon": "^7.5.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"moxios": "^0.4.0",
"supertest": "^4.0.2",
"ts-jest": "^25.0.0",
"ts-node": "^8.6.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.5",
"uglify-es": "^3.3.9"
}
}