-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "todo",
"version": "1.0.0",
"description": "get 'er done list",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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"
},
"author": "",
"license": "ISC",
"dependencies": {
"date-fns": "^2.30.0",
"normalize.css": "^8.0.1",
"reset-css": "^5.0.2"
},
"devDependencies": {
"@prettier/sync": "^0.3.0",
"@stylistic/eslint-plugin": "^1.5.3",
"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",
"prettier": "^3.1.1",
"prettier-plugin-brace-style": "^0.4.1",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}