This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.15 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "darty",
"description": "Darty",
"keywords": [
"typescript",
"typed",
"spa",
"boilerplate",
"starter"
],
"version": "0.55.0",
"homepage": "https://github.com/eserozvataf/darty",
"author": "Eser Ozvataf <eser@ozvataf.com> (https://twitter.com/eser)",
"contributors": [
{
"name": "Eser Ozvataf",
"email": "eser@ozvataf.com",
"url": "http://eser.ozvataf.com/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/eserozvataf/darty.git"
},
"bugs": {
"url": "https://github.com/eserozvataf/darty/issues"
},
"license": "Apache-2.0",
"main": "./bin/darty",
"bin": {
"darty": "./bin/darty"
},
"files": [
"bin",
"src",
"etc"
],
"engines": {
"node": ">=12.17.0"
},
"scripts": {
"cleanup": "rm -rf package-lock.json node_modules/",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"autoprefixer": "^10.4.7",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"colors": "^1.4.0",
"copy-webpack-plugin": "^11.0.0",
"cross-spawn": "^7.0.3",
"css-loader": "^6.7.1",
"cssnano": "^5.1.12",
"dotenv-webpack": "^8.0.0",
"express": "^4.18.1",
"glob": "^8.0.3",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"mini-css-extract-plugin": "^2.6.1",
"node-fetch": "^3.2.9",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"postcss-loader": "^7.0.1",
"postcss-nesting": "^10.1.10",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-node-externals": "^3.0.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.1",
"@types/webpack": "^5.28.0"
}
}