-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.18 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.18 KB
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
{
"name": "image-processing-api",
"version": "1.0.0",
"description": "Starter template for developing with node, express and typescript. Includes configuration for prettier, esling and testing with jasmine",
"main": "index.js",
"scripts": {
"start": "nodemon -L ./src/index.ts",
"build": "npx tsc",
"lint": "eslint . --ext .ts",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine"
},
"author": "Alfonsina Lizardo",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"jasmine": "^3.7.0",
"jasmine-spec-reporter": "^7.0.0",
"sharp": "^0.28.1",
"supertest": "^6.1.3"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jasmine": "^3.7.1",
"@types/node": "^15.0.2",
"@types/sharp": "^0.28.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}