forked from lucaccio/calend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "kalend",
"version": "0.17.6",
"author": "nibdo",
"license": "MIT",
"private": false,
"source": "src/index.tsx",
"targets": {
"default": {
"distDir": "./"
},
"styles": {
"source": "src/index.scss",
"optimize": false
}
},
"types": "index.d.ts",
"style": "dist/styles/index.css",
"repository": {
"type": "git",
"url": "https://github.com/nibdo/kalend"
},
"dependencies": {
"color": "4.2.3",
"datez": "0.0.8",
"dequal": "2.0.3",
"luxon": "3.2.1"
},
"devDependencies": {
"@types/color": "3.0.3",
"@types/faker": "5.5.9",
"@types/luxon": "3.2.0",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"chai": "4.3.7",
"copyfiles": "2.4.1",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-sort-imports-es6-autofix": "0.6.0",
"eslint-plugin-unused-imports": "2.0.0",
"faker": "5.5.3",
"gulp": "4.0.2",
"gulp-concat": "2.6.1",
"husky": "8.0.3",
"mocha": "10.2.0",
"node-sass": "8.0.0",
"prettier": "2.8.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"ts-mocha": "10.0.0",
"typescript": "4.9.4"
},
"peerDependencies": {
"react": "17.0.2 - 18",
"react-dom": "17.0.2 - 18"
},
"scripts": {
"husky": "npx husky install && npx husky add .husky/pre-commit \"npm run lint\"",
"tsc-build": "tsc --noEmit",
"compile": "tsc --module commonjs --outDir build/",
"compile-scss": "node-sass ./src/ --output ./build/dist/styles/tmp",
"copy": "cp ./package.json ./build/ && cp ./LICENSE ./build/ && cp ./README.md ./build/",
"build": " mkdir -p build && mkdir -p build/dist && npm run compile && npm run copy && npm run compile-scss && gulp && rm -r ./build/dist/styles/tmp",
"start": "BROWSER=none PORT=4103 react-scripts start",
"test": "ts-mocha --config ./mocharc.js",
"lint": "eslint . --ext ts --ext tsx"
},
"keywords": [
"javascript"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}