-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.51 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "egfwd-storefront-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon ./src/index.ts",
"clean": "rimraf dist/",
"start": "npm run build && nodemon dist/index.js",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
"lint": "eslint . --ext .ts",
"build": "npm run clean && npx tsc",
"watch": "tsc-watch --esModuleInterop src/index.ts --outDir ./dist && 'node ./dist/index.js'",
"pretest": "set PORT=3001& db-migrate reset --env test && db-migrate up --env test",
"test": "set PORT=3001& npm run build && npm run jasmine",
"posttest": "set PORT=3001& db-migrate reset --env test",
"jasmine": "jasmine",
"migrate:up": "db-migrate up",
"migrate:reset": "set ENV=test& db-migrate reset --env test",
"createdatabase": "db-migrate db:create storefront && db-migrate db:create storefront_test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"jasmine": "^4.4.0",
"jasmine-spec-reporter": "^7.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.8.0",
"supertest": "^6.2.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.18",
"@types/pg": "^8.6.5",
"@types/supertest": "^2.0.12",
"@types/typescript": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.3"
}
}