-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.86 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
{
"name": "webpack-static-nunjucks-scaffolding",
"version": "0.0.1",
"description": "simple webpack scaffolding with nunjucks",
"scripts": {
"build": "webpack",
"build:prod": "webpack --env.production",
"watch": "webpack --watch",
"watch:prod": "webpack --watch --env.production"
},
"author": "Andrea Briganti <[email protected]>",
"license": "MPL-2.0",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"autoprefixer": "^10.0.0",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.12",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^4.3.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"extra-watch-webpack-plugin": "^1.0.3",
"file-loader": "^6.1.0",
"mini-css-extract-plugin": "^0.11.2",
"node-sass": "^4.14.1",
"nunjucks": "^3.2.2",
"nunjucks-webpack-plugin": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.0.5",
"postcss-loader": "^4.0.2",
"postcss-preset-env": "^6.7.0",
"precss": "^4.0.0",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.7.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.1.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"terser-webpack-plugin": "^4.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"bootstrap": "^4.5.2",
"jquery": "^3.5.0",
"@popperjs/core": "^2.4.4"
}
}