-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 810 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 810 Bytes
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
{
"name": "wingspan",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"prepare": "husky install",
"seed": "node databse/seed.js"
},
"dependencies": {
"better-sqlite3": "^8.4.0",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"next": "13.4.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-svg": "^16.1.17",
"styled-components": "^6.0.0-rc.3"
},
"devDependencies": {
"cypress": "^12.15.0",
"babel-plugin-styled-components": "^2.1.3",
"husky": "^8.0.3",
"prettier": "^2.8.8"
}
}