-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.61 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
{
"name": "nunjucks-static",
"version": "4.0.9",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"description": "Nunjucks for webpack",
"keywords": [
"webpack",
"nunjucks",
"template",
"loader",
"plugin",
"static",
"html"
],
"author": "Nickolay Eryomin - https://github.com/ereminnf",
"homepage": "https://github.com/ereminnf/nunjucks-static",
"repository": {
"type": "git",
"url": "https://github.com/ereminnf/nunjucks-static.git"
},
"bugs": {
"url": "https://github.com/ereminnf/nunjucks-static/issues"
},
"scripts": {
"clean": "rimraf lib && rimraf tsc",
"compile": "tsc --project tsconfig.tsc.json",
"copy": "copyfiles -u 2 tsc/src/**/*.{js,ts} lib",
"minify": "minimize-js ./lib",
"build": "npm run clean && npm run compile && npm run copy && npm run minify",
"prettier": "prettier --write src/**/*.ts"
},
"dependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.19.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-runtime": "7.18.10",
"@babel/preset-env": "7.19.0",
"@babel/preset-typescript": "7.18.6",
"@babel/register": "7.18.9",
"@babel/runtime": "7.19.0",
"babel-loader": "8.2.5",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "4.1.0",
"dotenv": "16.0.2",
"file-loader": "6.2.0",
"html-loader": "4.1.0",
"mini-css-extract-plugin": "2.6.1",
"node-sass": "6.0.1",
"postcss": "8.4.16",
"postcss-loader": "7.0.1",
"postcss-sort-media-queries": "4.3.0",
"sass-loader": "13.0.2",
"style-loader": "3.3.1",
"terser-webpack-plugin": "5.3.6",
"ts-loader": "9.3.1",
"typescript": "4.8.3",
"url-loader": "4.1.1",
"webpack": "5.74.0",
"webpack-bundle-analyzer": "4.6.1",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.0",
"webpack-merge": "5.8.0",
"glob": "7.1.6",
"html-webpack-plugin": "5.5.0",
"loader-utils": "2.0.0",
"nunjucks": "3.2.3"
},
"devDependencies": {
"@types/glob": "8.0.0",
"@types/loader-utils": "2.0.3",
"@types/nunjucks": "3.2.1",
"copyfiles": "2.4.1",
"minimize-js": "1.3.0",
"prettier": "2.7.1",
"rimraf": "3.0.2"
}
}