-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 992 Bytes
/
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
{
"name": "thewatchspot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:compile": "npx babel app --extensions .ts --out-dir lib --source-maps",
"build": "concurrently npm:build:*",
"watch:compile": "npx babel app --extensions .ts --out-dir lib --source-maps --watch",
"watch:types": "tsc --watch",
"watch": "concurrently npm:watch:*",
"dev": "tailwindcss -i ./app/styles/input.css -o ./app/styles/output.css --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"concurrently": "^8.2.2",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.3",
"ts-loader": "^9.5.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.7.2"
}
}