-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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": "adorable-avatars",
"version": "0.2.2-alpha.0",
"description": "",
"engines": {
"node": ">= 10.24.x"
},
"scripts": {
"test": "mocha --exit",
"build": "tsc && npm run build:assets",
"build:assets": "cp -r {src,dist}/img",
"dev": "concurrently --kill-others --prefix=name --names=server,tslint --prefix-colors=green,magenta \"npm run dev:server\" \"npm run dev:lint\"",
"dev:server": "onchange -i -k 'src/**/*.ts' -- ts-node test/server.ts",
"dev:lint": "onchange -i -k 'src/**/*.ts' -- tslint -t stylish 'src/**/*.ts'",
"prepublishOnly": "npm run build"
},
"author": "",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"avatars-utils": "0.0.4",
"express": "^4.16.4",
"sharp": "^0.25.3",
"uuid": "^3.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/adorableio/adorable-avatars.git"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"@types/serve-favicon": "^2.2.30",
"@types/sharp": "^0.22.1",
"@types/supertest": "^2.0.7",
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"mocha": "^6.1.4",
"onchange": "^5.2.0",
"prettier": "^1.17.0",
"serve-favicon": "^2.5.0",
"supertest": "^4.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.3"
}
}