-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
119 lines (119 loc) · 3.53 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "kiln-it",
"version": "1.0.0",
"description": "\"Keep records of clay percent shrinkage, weight and dates of firing for my clay creations\"",
"main": "index.js",
"engines": {
"node": "18.x.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilyparkes/kiln-it.git"
},
"author": "Emily Coco Parkes",
"keywords": [
"fullstack",
"web",
"development",
"practice"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/emilyparkes/kiln-it/issues"
},
"homepage": "https://github.com/emilyparkes/kiln-it#readme",
"scripts": {
"start": "ts-node server/index.ts",
"dev": "run-p dev:client dev:server",
"dev:client": "vite && sass",
"dev:server": "nodemon server/index.ts",
"build": "run-s build:client build:server",
"build:client": "vite build",
"build:server": "tsc -p server/tsconfig.json",
"knex": "knex --knexfile ./server/db/knexfile.js",
"db": "npm run db:migrate && npm run db:seed",
"db:seed": "npm run knex seed:run",
"db:migrate": "npm run knex migrate:latest",
"db:rollback": "npm run knex migrate:rollback",
"db:reset": "npm run knex migrate:rollback && npm run db",
"sass": "sass --watch client/styles/index.scss:client/styles/output.css",
"check": "npm run lint && npm run test",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"eslintConfig": {
"extends": "@devacademy/eslint-config/react",
"ignorePatterns": [
"bundle.js",
"dist/*"
]
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^20.4.6",
"dotenv": "^16.3.1",
"express": "^4.17.2",
"knex": "^2.3.0",
"pg": "^8.8.0",
"sqlite3": "^5.1.2",
"tss-react": "^4.8.8"
},
"devDependencies": {
"@devacademy/eslint-config": "^1.9.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.4",
"@mui/system": "^5.11.14",
"@redux-devtools/extension": "^3.2.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4",
"@testing-library/user-event": "^14.4.3",
"@types/express": "^4.17.14",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@types/react-modal": "^3.13.1",
"@types/redux-thunk": "^2.1.0",
"@types/superagent": "^4.1.16",
"@types/supertest": "^2.0.12",
"@types/testing-library__jest-dom": "^5.14.6",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.25.3",
"eslint-plugin-react-hooks": "^4.6.0",
"http-errors": "^1.8.0",
"nock": "^13.3.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.1",
"react": "^18.0.2",
"react-dom": "^18.2.0",
"react-icons": "^4.2.0",
"react-redux": "^8.0.4",
"react-router-dom": "^6.4.2",
"redux": "^4.1.1",
"redux-thunk": "^2.4.2",
"sass": "^1.65.1",
"superagent": "7.1.1",
"supertest": "^6.2.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~4.8.4",
"vite": "^4.2.1",
"vite-plugin-environment": "^1.1.3",
"vitest": "^0.30.1"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"browserslist": "> 2%, not dead"
}