-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.03 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "dorameter-next",
"version": "0.1.0",
"private": true,
"files": [],
"scripts": {
"dev": "export PG_CONNECTION_STRING=postgres://user:user_ps@localhost:5432/db_name && yarn migrate-seed-data && next dev",
"build": "next build",
"cypress:open": "cypress open",
"cypress:run": "cypress run --headless -b chrome",
"start": "next start",
"test": "export PG_CONNECTION_STRING=postgres://user:user_ps@localhost:5432/db_name && jest -i --forceExit",
"lint": "eslint . --quiet",
"start-local-db": "docker-compose up -d --build && sleep 5",
"stop-local-db": "docker-compose down && docker volume rm dorameter_postgresdata",
"migrate-seed-data": "yarn migrate:test && db-migrate up --config db-migrate.json -m server/repositories/migrations/seed-data -t dorameter_migrations -e test",
"migrate": "yarn start-local-db && db-migrate up --config db-migrate.json -m server/repositories/migrations -t dorameter_migrations",
"migrate:test": "yarn start-local-db && db-migrate up --config db-migrate.json -m server/repositories/migrations -t dorameter_migrations -e test",
"restart-local-db": "yarn stop-local-db && yarn start-local-db",
"verify": "yarn lint && yarn test && yarn cypress:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brigonzalez/dorameter.git"
},
"keywords": [
"dorameter",
"dora",
"meter",
"metrics"
],
"author": "Brian Gonzalez",
"license": "MIT",
"bugs": {
"url": "https://github.com/brigonzalez/dorameter/issues"
},
"homepage": "https://github.com/brigonzalez/dorameter#readme",
"dependencies": {
"@emotion/cache": "^11.5.0",
"@emotion/react": "^11.5.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@hapi/joi": "^17.1.1",
"@mui/icons-material": "5.0.3",
"@mui/material": "^5.0.6",
"date-fns": "^2.23.0",
"db-migrate": "^0.11.12",
"db-migrate-pg": "^1.2.2",
"http-status": "^1.5.0",
"knex": "^0.95.11",
"next": "12.0.3",
"pg": "^8.7.1",
"pino": "^6.13.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/chance": "^1.1.3",
"@types/hapi__joi": "^17.1.7",
"@types/jest": "27.0.2",
"@types/pino": "^6.3.11",
"@types/react": "17.0.20",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-jest": "27.3.1",
"babel-plugin-transform-runtime": "6.23.0",
"chance": "^1.1.8",
"cross-fetch": "^3.1.4",
"cypress": "^8.7.0",
"eslint": "^7.32.0",
"eslint-config-get-off-my-lawn": "^6.0.3",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "27.3.1",
"pino-pretty": "^7.0.0",
"prettier": "2.4.0",
"ts-jest": "27.0.7",
"typescript": "4.4.4"
}
}