-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 KB
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
{
"name": "next-theme-tools",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"format": "prettier --write \"**/*.js\"",
"deploy": "npm run build && touch out/.nojekyll && echo \"theme.deoprototypes.com\" >> out/CNAME && git add out/ && git commit -m \"Deploy\" && git subtree push --prefix out origin gh-pages",
"dokku-deploy": "bin/deploy",
"test": "jest --watch"
},
"dependencies": {
"@tippyjs/react": "4.2.0",
"axios": "0.21.0",
"codemirror": "5.58.2",
"json-to-ast": "2.1.0",
"jsonlint": "1.6.3",
"lodash": "4.17.20",
"moment": "2.29.1",
"next": "latest",
"prop-types": "15.7.2",
"react": "18.1.0",
"react-codemirror2": "7.2.1",
"react-color": "2.19.3",
"react-dom": "18.1.0",
"react-toastify": "6.1.0",
"tippy.js": "6.2.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"gray-matter": "^4.0.2",
"husky": "4.3.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"postcss-preset-env": "^6.7.0",
"prettier": "2.1.2",
"pretty-quick": "3.1.0",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"tailwindcss": "^1.8.10"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}