-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
{
"name": "template-ts",
"version": "1.0.0",
"description": "get 'er done list",
"main": "index.js",
"type": "module",
"scripts": {
"build": "webpack --config webpack.prod.js",
"watch": "webpack --watch",
"start": "webpack serve --open-app-name 'Google Chrome' --config webpack.dev.js",
"gh-deploy": "git add . && git ci -m 'Deploy to gh' && git push && git subtree push --prefix dist origin gh-pages",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"tsc": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"date-fns": "^2.30.0",
"modern-normalize": "^2.0.0",
"reset-css": "^5.0.2"
},
"devDependencies": {
"@prettier/sync": "^0.3.0",
"@stylistic/eslint-plugin": "^1.5.3",
"@tsconfig/node20": "^20.1.4",
"@types/webpack-env": "^1.18.4",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-import": "^2.29.1",
"html-webpack-plugin": "^5.6.0",
"prettier": "^3.1.1",
"prettier-plugin-brace-style": "^0.4.1",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"keywords": []
}