-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
112 lines (112 loc) · 3.1 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "sp-build-tasks",
"description": "SharePoint front-end projects automation and tasks tool-belt",
"version": "3.22.1",
"author": "Andrew Koltyakov <andrew.koltyakov@gmail.com>",
"main": "./dist/index.js",
"typings": "./dist/index",
"scripts": {
"build": "npm run clean && npm run lint && npm run tsc",
"lint": "tslint -p .",
"tsc": "tsc -p .",
"clean": "rimraf ./dist ./tmp",
"resolutions": "npx npm-force-resolutions && npm i",
"test": "mocha --config ./test/.mocharc.json || ECHO."
},
"bugs": {
"url": "https://github.com/koltyakov/sp-build-tasks/issues"
},
"keywords": [
"sharepoint",
"assets",
"build tasks",
"front-end",
"scaffolders"
],
"repository": {
"type": "git",
"url": "git+https://github.com/koltyakov/sp-build-tasks.git"
},
"license": "MIT",
"homepage": "https://github.com/koltyakov/sp-build-tasks",
"dependencies": {
"@pnp/common-commonjs": "^2.1.0",
"@pnp/sp-commonjs": "^2.1.0",
"@types/sharepoint": "^2016.1.9",
"cache-loader": "^4.1.0",
"clean-css": "^4.2.3",
"colors": "^1.4.0",
"core-js": "^3.8.3",
"css-loader": "^4.3.0",
"del": "^6.0.0",
"dotenv": "^8.2.0",
"es6-map": "^0.1.5",
"es6-set": "^0.1.6",
"es6-weak-map": "^2.0.3",
"fork-ts-checker-webpack-plugin": "^5.2.1",
"gulp": "^4.0.2",
"gulp-load-plugins": "^2.0.6",
"gulp-spsave": "^4.0.0",
"gulp-watch": "^5.0.1",
"handlebars": "^4.7.6",
"listr": "^0.14.3",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"node-sp-auth": "^3.0.7",
"node-sp-auth-config": "^3.0.5",
"promise": "^8.1.0",
"resolve-url-loader": "^3.1.2",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"source-map-explorer": "^2.5.2",
"sp-live-reload": "^4.0.0",
"sp-pnp-node": "^3.0.1",
"sp-request": "^3.0.0",
"sp-rest-proxy": "^3.3.5",
"sppull": "^3.0.1",
"sppurge": "^3.0.1",
"spsave": "^4.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.2",
"through2": "^4.0.2",
"ts-loader": "^8.0.14",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"uglify-js": "^3.12.5",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"whatwg-fetch": "^3.5.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/clean-css": "^4.2.3",
"@types/core-js": "^2.5.4",
"@types/es6-weak-map": "^1.2.0",
"@types/gulp": "4.0.8",
"@types/gulp-load-plugins": "0.0.32",
"@types/listr": "^0.14.2",
"@types/minimist": "^1.2.1",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/node-sass": "^4.11.1",
"@types/sass": "^1.16.0",
"@types/terser-webpack-plugin": "^4.2.0",
"@types/uglify-js": "^3.11.1",
"@types/webpack": "^4.41.26",
"@types/webpack-dev-server": "^3.11.1",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1"
},
"resolutions": {},
"engines": {
"node": ">=14.0.0 <17.0.0"
},
"volta": {
"node": "16.19.1"
}
}