-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "lpld",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "run-p build:*",
"build:js": "npm run esbuild -- --minify --target=es6",
"build:css": "NODE_ENV=production npm run tailwindcss -- --minify",
"esbuild": "esbuild lpld/static/src/main.js --outfile=lpld/static/comp/main.js --bundle",
"standard": "standard",
"standard:fix": "npm run standard -- --fix",
"start": "npm run watch",
"tailwindcss": "tailwindcss -i lpld/static/src/style.css -o lpld/static/comp/style.css",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "run-p watch:*",
"watch:js": "npm run esbuild -- --watch",
"watch:css": "npm run tailwindcss -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbrlpld/lpld.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tbrlpld/lpld/issues"
},
"homepage": "https://github.com/tbrlpld/lpld#readme",
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"npm-run-all": "^4.1.5",
"standard": "^17.1.0",
"tailwindcss": "^3.3.5"
},
"dependencies": {
"@sentry/browser": "^7.77.0",
"@sentry/tracing": "^7.77.0",
"esbuild": "0.19.5"
}
}