-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.78 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
{
"name": "storefront-backend",
"version": "0.1.0",
"description": "",
"main": "server.ts",
"scripts": {
"start": "node src/server.ts",
"watch": "tsc-watch --esModuleInterop src/server.ts --outDir ./dist --onSuccess 'node ./dist/server.js'",
"test": "npm run test-up && NODE_ENV=test jasmine-ts; npm run test-down",
"test-up": "db-migrate db:create storefront_test && db-migrate --env test up",
"test-down": "db-migrate db:drop storefront_test",
"build": "tsc",
"lint": "eslint '*/**/*.{js,ts}' --fix",
"prettier": "prettier --write ."
},
"author": "Udacity, Marvin Splitt",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"db-migrate": "^0.11.12",
"db-migrate-pg": "^1.2.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.6.0",
"supertest": "^6.1.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jasmine": "^3.7.8",
"@types/jsonwebtoken": "^8.5.4",
"@types/node": "^16.0.1",
"@types/pg": "^8.6.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"dotenv": "^10.0.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jasmine": "^3.8.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"tsc-watch": "^4.4.0",
"typescript": "^4.3.5"
}
}