-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.08 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": "storefront_backend",
"version": "0.1.0",
"description": "",
"main": "server.ts",
"scripts": {
"start": "nodemon src/server.ts",
"build": "npx tsc",
"jasmine": "jasmine",
"watch": "tsc-watch --esModuleInterop src/server.ts --outDir ./build --onSuccess \"node ./build/server.js\"",
"test": "set ENV=test&& npx tsc && db-migrate db:create store_test && db-migrate --env test up && jasmine && db-migrate db:drop store_test",
"tsc": "tsc",
"lint": "eslint . --ext .ts ",
"prettier-ts": "prettier --config .prettierrc.json \"src/**/*.ts\" --write",
"prettier-js": "prettier --config .prettierrc.json \"build/**/*.js\" --write",
"clean": "rimraf build"
},
"author": "Udacity",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jasmine-object-matchers": "^0.1.0",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"supertest": "^6.3.1",
"typescript": "^4.8.4"
},
"keywords": [
"express",
"jasmine",
"eslint",
"prettier",
"postgres",
"db-migration"
],
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cli-color": "^2.0.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/pg": "^8.6.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"body-parser": "^1.20.1",
"cli": "^1.0.1",
"cli-color": "^2.0.3",
"cors": "^2.8.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "^5.2.0",
"jasmine": "^4.4.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"prettier": "^2.1.2",
"prettier-scripts": "latest",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3"
}
}