forked from benjaminkay93/standup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 988 Bytes
/
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
{
"name": "standup",
"version": "1.0.0",
"description": "A tool for keeping standup on time.",
"main": "index.js",
"repository": "git@github.com:benjaminkay93/standup.git",
"author": "benjaminkay93",
"license": "MIT",
"private": false,
"scripts": {
"dev": "rm -rf .next && next",
"build": "rm -rf .next && next build",
"start": "next start",
"lint": "eslint ./ --ext .js,.jsx"
},
"dependencies": {
"date-fns": "^2.26.0",
"next": "^12.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^2.0.1",
"eslint": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-standard": "^5.0.0"
}
}