forked from mazipan/pramuka-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "buku-saku-pramuka",
"version": "1.1.0",
"description": "Buku saku pramuka digital",
"main": "index.js",
"scripts": {
"analyze:tailwind-css-class-order": "rustywind --dry-run .",
"analyze": "yarn analyze:tailwind-css-class-order",
"fix:tailwind-css-class-order": "rustywind --write .",
"fix": "yarn fix:tailwind-css-class-order",
"dev": "next",
"build": "next build",
"export": "yarn build && next export",
"start": "next start",
"lint": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mazipan/buku-saku-pramuka.git"
},
"author": "Irfan Maulana <https://mazipan.space/>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mazipan/buku-saku-pramuka/issues"
},
"homepage": "https://github.com/mazipan/buku-saku-pramuka#readme",
"dependencies": {
"cors": "^2.8.5",
"next": "9.5.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-icons": "^3.11.0"
},
"devDependencies": {
"autoprefixer": "9.8.6",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"rustywind": "0.6.6",
"tailwindcss": "1.7.2"
},
"lint-staged": {
"*.{js,ts,vue}": "yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}