-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "spfx-google-tag-manager",
"version": "0.5.0",
"private": true,
"engines": {
"node": ">=16.13.0 <17.0.0 || >=18.17.1 <19.0.0"
},
"main": "lib/index.js",
"scripts": {
"build": "gulp build",
"bundle": "gulp bundle",
"clean": "gulp clean",
"dev": "gulp clean && gulp bundle && gulp package-solution",
"dist": "gulp clean --ship && gulp bundle --ship && gulp package-solution --ship",
"package-solution": "gulp package-solution",
"prettier": "prettier --write {config,src}/**/*",
"serve": "gulp serve --nobrowser"
},
"dependencies": {
"@microsoft/decorators": "1.18.2",
"@microsoft/sp-application-base": "1.18.2",
"@microsoft/sp-core-library": "1.18.2"
},
"devDependencies": {
"@microsoft/eslint-config-spfx": "1.18.2",
"@microsoft/eslint-plugin-spfx": "1.18.2",
"@microsoft/rush-stack-compiler-4.7": "0.1.0",
"@microsoft/sp-build-web": "1.18.2",
"@rushstack/eslint-config": "3.6.2",
"@types/crypto-js": "4.2.2",
"@types/es6-promise": "0.0.33",
"@types/webpack-env": "1.18.4",
"eslint": "8.56.0",
"gulp": "4.0.2",
"typescript": "5.3.3"
},
"overrides": {
"glob-parent": "^5.1.2",
"got": "^11.8.5",
"jsdom": "^16.5.0",
"node-notifier": "^8.0.1",
"postcss": "^8.4.31",
"qs": "^6.5.3",
"semver": "^7.5.2",
"tough-cookie": "^4.1.3",
"validator": "^13.7.0",
"yargs-parser": "^5.0.0"
}
}