-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
56
57
{
"name": "japboy.github.io",
"version": "2021.0.0",
"description": "Portfolio about Yu Inao",
"main": "",
"scripts": {
"build": "NODE_ENV=production npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"lint": "concurrently \"npm:lint:*\"",
"lint:prettier": "prettier --check .",
"lintfix": "concurrently \"npm:lintfix:*\"",
"lintfix:prettier": "prettier --write .",
"prepare": "husky install",
"start": "NODE_ENV=development npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript --watch",
"test": "echo \"No tests for now...\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/japboy/japboy.git"
},
"author": "Yu Inao",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": "^18.18.0",
"npm": "^9.8.1"
},
"dependencies": {
"classnames": "2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"tslib": "2.6.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-html": "0.2.4",
"@rollup/plugin-node-resolve": "13.0.6",
"@rollup/plugin-replace": "3.0.0",
"@rollup/plugin-typescript": "8.3.0",
"@types/react": "17.0.37",
"@types/react-dom": "17.0.11",
"autoprefixer": "10.4.17",
"concurrently": "8.2.2",
"husky": "7.0.4",
"lint-staged": "12.1.3",
"postcss": "8.4.33",
"prettier": "3.2.4",
"prettier-plugin-tailwindcss": "0.5.11",
"rollup": "2.61.0",
"rollup-plugin-esbuild": "4.7.2",
"rollup-plugin-postcss": "4.0.2",
"tailwindcss": "3.4.1",
"typescript": "4.5.3"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}