-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
69 lines (69 loc) · 1.73 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
{
"name": "calend",
"version": "0.0.1-beta9",
"author": "nibdo",
"license": "MIT",
"private": false,
"declaration": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/nibdo/calend"
},
"dependencies": {
"luxon": "2.1.1",
"node-sass": "4.14.1",
"typescript": "4.5.2"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/luxon": "2.0.7",
"@types/mocha": "9.0.0",
"@types/node": "14.17.34",
"@types/react": "17.0.35",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "5.4.0",
"copyfiles": "2.4.1",
"eslint-config-prettier": "5.1.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-prettier": "4.0.0",
"chai": "4.3.4",
"luxon": "2.1.1",
"mocha": "9.1.3",
"prettier": "2.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts": "4.0.3",
"tsconfig-paths": "3.12.0",
"ts-mocha": "8.0.0"
},
"peerDependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
},
"scripts": {
"start": "BROWSER=none PORT=4103 react-scripts start",
"build": "npm run compile && npm run copy && npm run copy-style",
"compile": "tsc",
"copy-style": "copyfiles -u 1 \"./src/**/*.scss\" \"dist\"",
"copy": "cp ./package.json ./dist/ && cp ./LICENSE ./dist/ && cp ./README.md ./dist/",
"test": "ts-mocha --config ./mocharc.js"
},
"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"
]
}
}