-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.7 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
{
"name": "5-0.knoblau.ch",
"version": "0.1.2",
"description": "a simple repo for all the instructions",
"repository": "https://github.com/mousemke/5-0.knoblau.ch",
"main": "index.js",
"author": "Sadie Braun",
"license": "ISC",
"engines": {
"node": ">=16.10.0",
"npm": ">=7"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm prettier --write",
"npx eslint --fix"
]
},
"scripts": {
"build": "npx rimraf dist && rollup --config rollup.config.ts && cp src/robots.txt dist/robots.txt",
"prettier": "prettier \"./**/*.js\" \"./**/*.ts\" \"./**/*.tsx\" \"./**/*.md\" \"./**/*.html\" --write",
"test": "npm run prettier && npm run test:lint && npm run test:types && npm run test:unit",
"test:unit": "jest && npm run test:unit:printCoverageLink",
"test:unit:printCoverageLink": "node ./printCoverageReportLink.js",
"test:lint": "eslint -c .eslint.js --ext .ts --ext .tsx --ext .js ./",
"test:types": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@arwes/react-animator": "^1.0.0-alpha.21",
"@arwes/react-bgs": "^1.0.0-alpha.21",
"@arwes/react-frames": "^1.0.0-alpha.21",
"@arwes/react-text": "^1.0.0-alpha.21",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.4.0",
"@testing-library/react": "^13.3.0",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/rollup-plugin-node-globals": "^1.4.1",
"react-jss": "^10.9.2",
"react-select": "^5.4.0",
"react-switch": "^7.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2"
},
"devDependencies": {
"@babel/core": "7.18.13",
"@babel/preset-env": "7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "29.0.0",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"babel-jest": "29.0.1",
"eslint": "8.23.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-eyeo": "3.2.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "^8.0.1",
"jest": "29.0.1",
"jest-environment-jsdom": "29.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "2.79.0",
"typescript": "^5.0.4"
}
}