-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3 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
90
91
92
93
94
95
96
97
98
{
"name": "tp-npm",
"version": "1.0.0",
"description": "cours",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/*",
"css:autoprefixer": "postcss -u autoprefixer -r dist/*.css",
"css:scss": "node-sass --output-style compressed -o dist src/scss",
"css:lint": "stylelint --fix \"src/scss/*.scss\" --custom-syntax postcss-scss",
"build:css": "npm run css:lint && npm run css:scss && npm run css:autoprefixer",
"build:js": "webpack --mode=production --stats-error-details",
"build:html": "posthtml -c posthtml.json",
"build:images": "imagemin src/images/**/* --out-dir=dist/images",
"build": "run-s build:*",
"serve": "browser-sync start --server \"dist\" --files \"dist\"",
"watch:css": "onchange \"src/scss\" -- npm run build:css",
"watch:html": "onchange \"src/views\" -- npm run build:html",
"watch:images": "onchange \"src/images\" -- npm run build:images",
"watch:js": "onchange \"src/js\" -- webpack --mode=development",
"watch": "run-p serve watch:*"
},
"repository": {
"type": "git",
"url": "https://github.com/bootexe/tp-npm.git"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.16.0",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"browser-sync": "^2.27.7",
"fs": "^0.0.1-security",
"htmlnano": "^1.1.1",
"imagemin": "^8.0.1",
"imagemin-cli": "^7.0.0",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.3.11",
"postcss-cli": "^9.0.2",
"postcss-less": "^5.0.0",
"postcss-scss": "^4.0.2",
"posthtml": "^0.16.5",
"posthtml-cli": "^0.10.0",
"posthtml-modules": "^0.7.6",
"sass": "^1.43.4",
"scss": "^0.2.4",
"stylelint": "^14.0.1",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@domenic/eslint-config": "^1.4.0",
"abab": "^2.0.5",
"benchmark": "^2.1.4",
"browser": "^0.2.6",
"browserify": "^17.0.0",
"browserify-zlib": "^0.2.0",
"canvas": "^2.8.0",
"chai": "^4.3.4",
"eslint": "^8.2.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-jsdom-internal": "^0.0.1-security",
"fs-index": "^0.0.2",
"fs-localstorage": "^1.1.5",
"http": "^0.0.1-security",
"https": "^1.0.0",
"jquery": "^3.6.0",
"js-yaml": "^4.1.0",
"jsdom": "^18.1.0",
"jsdom-global": "^3.0.2",
"karma": "^6.3.8",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-webworker": "^1.3.0",
"minimatch": "^3.0.4",
"mocha": "^9.1.3",
"mocha-sugar-free": "^1.4.0",
"net": "^1.0.2",
"os": "^0.1.2",
"path": "^0.12.7",
"pngjs": "^6.0.0",
"rimraf": "^3.0.2",
"server-destroy": "^1.0.1",
"stream": "^0.0.2",
"tls": "^0.0.1",
"url": "^0.11.0",
"util": "^0.12.4",
"watchify": "^4.0.0",
"webidl2js": "^17.0.0",
"yargs": "^17.2.1",
"zlib": "^1.0.5",
"zlib-browserify": "^0.0.3"
}
}