-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
89 lines (89 loc) · 2.43 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
{
"name": "typewritesomething",
"version": "1.0.4",
"description": "A minimalist typewriter simulator to inspire creative writing",
"private": true,
"scripts": {
"start": "npm run watch",
"build": "NODE_ENV=production rollup -c",
"lint": "eslint ./src --ext .js,.ts",
"test:coverage": "jest --coverage",
"test": "jest",
"watch": "npm-run-all -p watch:*",
"watch:js": "rollup -c -w",
"watch:browser": "browser-sync start --config bs-config.js"
},
"dependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.24.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.5.0",
"howler": "^2.2.4",
"lz-string": "^1.5.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0"
},
"devDependencies": {
"@testing-library/dom": "^7.31.2",
"@types/howler": "^2.2.11",
"@types/jest": "^27.5.2",
"@types/lz-string": "^1.5.0",
"@types/node": "^14.18.63",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.29.3",
"browser-sync-console": "^1.0.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^4.3.8",
"jest": "^27.5.1",
"lint-staged": "^10.5.4",
"prettier": "^2.8.8",
"ts-jest": "^27.1.5",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
},
"homepage": "https://typewritesomething.com",
"repository": {
"type": "git",
"url": "https://github.com/bozdoz/typewritesomething"
},
"bugs": {
"url": "https://github.com/bozdoz/typewritesomething/issues"
},
"keywords": [
"typewriter",
"simulator",
"typewritesomething",
"creative",
"writing"
],
"author": "Benjamin J DeLong",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|ts)": [
"eslint --cache --fix",
"prettier --write"
]
},
"engines": {
"node": ">=20"
}
}