-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 989 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 989 Bytes
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
{
"name": "is-it-easter-today",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"clean": "rm dist/bundle.js",
"start": "webpack serve --mode development",
"build-prod": "webpack --mode production",
"test": "jest",
"publish": "npm run build-prod && aws s3 sync \"dist\" \"s3://isiteastertoday.com\" & aws cloudfront create-invalidation --distribution-id E3AKP8684BPT4P --paths \"/*\""
},
"devDependencies": {
"@types/jest": "^29.5.11",
"babel-jest": "^29.3.1",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.3.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"dayjs": "^1.11.10"
},
"browserslist": "defaults"
}