-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.18 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "learnwith.community",
"description": "The Learn With Community (LWC) official website.",
"version": "0.0.1",
"private": true,
"type": "module",
"homepage": "https://github.com/LearnWithCommunity/learnwith.community#readme",
"bugs": "https://github.com/LearnWithCommunity/learnwith.community/issues",
"author": {
"name": "Vasanth Developer",
"email": "[email protected]",
"url": "https://vsnth.dev"
},
"engines": {
"node": "16.x"
},
"repository": {
"type": "git",
"url": "https://github.com/LearnWithCommunity/learnwith.community.git"
},
"scripts": {
"clean": "rimraf www dist",
"build": "rimraf www dist && stencil build --prerender",
"watch:stencil": "stencil build --dev --watch --serve",
"watch:tailwind": "tailwind -w -c tailwind.config.cjs -i src/assets/styles/index.css -o www/build/app.css",
"dev": "rimraf www dist && concurrently --raw npm:watch:*",
"preview": "rimraf www dist && stencil build --prerender && sirv www"
},
"dependencies": {
"axios": "^0.27.2",
"luxon": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@stencil/core": "^2.17.1",
"@stencil/eslint-plugin": "^0.4.0",
"@stencil/postcss": "^2.1.0",
"@tailwindcss/typography": "^0.5.4",
"@types/luxon": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@vercel/node": "^2.4.5",
"concurrently": "^7.3.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"is-mobile": "^3.1.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sirv-cli": "^2.0.2",
"smooth-scroll": "^16.1.3",
"stencil-inline-svg": "^1.1.0",
"tailwindcss": "^3.1.6",
"typescript": "^4.7.4",
"vercel": "^19.1.2"
}
}