-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "udacity-build-a-storefront-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"watch": "tsc-watch --esModuleInterop src/server.ts --outDir ./dist --onSuccess \"node ./dist/server.js\"",
"test": "set ENV=test&& db-migrate down -c 5 --env test && db-migrate up -c 5 --env test && yarn build&& jasmine-ts ",
"dev": "nodemon src/server.ts",
"clean": "rimraf build/",
"build": "yarn clean && npx tsc",
"start": "npm run build && nodemon build/server.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/pg": "^8.6.5",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cross-env": "^7.0.3",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"supertest": "^6.1.6",
"yarn": "^1.22.18"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.2",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.12",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jasmine-ts": "^0.4.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.5.2"
}
}