-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.51 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": "lottie-mvp",
"version": "1.0.0",
"description": "",
"browserslist": "> 0.5%, last 2 versions, not dead",
"source": "index.html",
"scripts": {
"build": "npm run clean && npm run generate && npm run bundle",
"generate": "npx ts-node build.ts",
"bundle": "cd build && npx parcel build *.html --no-source-maps",
"serve": "cd dist && npx http-server -p 8080 -a 127.0.0.1 -c -1",
"lint": "npx eslint *.ts src/*.ts",
"clean": "rm -rf ./dist/* ./build/*",
"check": "npx tsc --noEmit *.ts src/*.ts",
"watch": "nodemon",
"test": "echo ${PWD}",
"deploy": "npm run build && npx firebase deploy --only hosting:prod",
"deploy:test": "npm run build && npx firebase deploy --only hosting:test"
},
"author": "",
"license": "Apache 2.0",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@types/marked": "^4.0.2",
"handlebars": "^4.7.7",
"marked": "^4.0.12"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.3.2",
"@parcel/transformer-typescript-tsc": "^2.3.2",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"esbuild": "^0.14.32",
"esbuild-register": "^3.3.2",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"firebase-tools": "^10.4.0",
"http-server": "^14.1.0",
"nodemon": "^2.0.15",
"parcel": "^2.3.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}