-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 KB
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
{
"name": "@townland-project/component",
"version": "0.0.1",
"description": "Townland component boilerplate",
"main": "public/bundle.js",
"scripts": {
"serve": "webpack serve",
"build": "webpack build --mode=production",
"cli": "ts-node bin/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"townland",
"component",
"boilerplate"
],
"author": {
"name": "Townland",
"url": "https://townland.xyz",
"email": "mail@townland.xyz"
},
"repository": {
"type": "git",
"url": "https://github.com/townland-project/component.git"
},
"homepage": "https://project.townland.xyz/repo/component",
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.4",
"autoprefixer": "^10.4.2",
"css-loader": "^6.5.1",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"postcss-nested": "^5.0.6",
"raw-loader": "^4.0.2",
"sass": "^1.45.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.15",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1"
},
"dependencies": {
"@townland-project/app": "*",
"@townland-project/dom": "*",
"@townland-project/eventer": "*",
"@townland-project/gui": "*",
"html-webpack-plugin": "^5.5.0"
},
"browserslist": [
"last 1 Chrome versions"
]
}