-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "pomodoro-total-time",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:jpenton/pomodoro-total-time.git",
"author": "Jon Penton <jon@penton.site>",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"deploy": "run-s build export",
"export": "next export",
"start": "next start",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest",
"lint": "run-p lint:*",
"lint:prettier": "prettier -c .",
"lint:commitlint": "commitlint --from HEAD~1 --to HEAD --verbose"
},
"dependencies": {
"@tailwindcss/ui": "^0.5.0",
"formik": "^2.1.5",
"next": "^9.5.2",
"ramda": "^0.27.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tailwindcss": "^1.5.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.6.0",
"@types/ramda": "^0.27.17",
"@types/react": "^16.9.46",
"husky": "^4.3.0",
"jest": "^26.4.2",
"npm-run-all": "^4.1.5",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"typescript": "^3.9.7"
}
}