-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "sclr_ac",
"version": "1.0.0",
"description": "Backend for sclr.ac URL shortner",
"main": "index.js",
"scripts": {
"build": "tsc",
"prestart:dev": "npm run build",
"start:dev": "cross-env NODE_ENV=development node dist/run.js",
"start": "cross-env NODE_ENV=production node dist/run.js",
"test": "jest",
"test:watch": "npm run test -- --watch",
"clean": "rimraf dist",
"lint": "eslint --ext .js,.ts,.jsx,.tsx .",
"lint:fix": "eslint --fix --ext .js,.ts,.jsx,.tsx .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scaleracademy/sclr.ac-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/scaleracademy/sclr.ac-backend/issues"
},
"homepage": "https://github.com/scaleracademy/sclr.ac-backend#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"pg": "^8.6.0",
"pg-hstore": "^2.3.4",
"typeorm": "^0.2.34"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.0",
"jest": "^27.0.5",
"rimraf": "^3.0.2",
"sqlite3": "^5.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"engines": {
"node": "14 || 16",
"npm": ">=7"
}
}