-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
99 lines (99 loc) · 3.38 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
{
"name": "excelint",
"description": "",
"author": "",
"version": "1.0.0",
"scripts": {
"preinstall": "npm install webpack webpack-dev-server office-toolbox rimraf yargs npx",
"clean": "rimraf dist && rimraf .awcache",
"lint": "tslint --project tsconfig.json",
"start": "webpack serve --inline --host 0.0.0.0 --port 443 --mode production --config config/webpack.dev.js --progress",
"start-local": "webpack serve --inline --host localhost --port 3000 --config config/webpack.dev-local.js --progress",
"sideload": "office-toolbox sideload -m manifest.xml -a Excel",
"build": "shx rm -rf src/components/ExceLint-core && git clone https://github.com/ExceLint/ExceLint-core src/components/ExceLint-core && npm run clean && webpack --mode production --config config/webpack.prod.js --progress",
"build-addin": "webpack --config config/webpack.build-addin.js --progress",
"validate": "office-toolbox validate -m manifest.xml",
"run-in-docker": "node_modules/.bin/webpack serve --inline --host 0.0.0.0 --port 3000 --config config/webpack.dev-local.js"
},
"dependencies": {
"@microsoft/office-js-helpers": "^1.0.2",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@types/react-hot-loader": "^4.1.1",
"@types/webpack": "4.41.25",
"@types/webpack-dev-server": "3.11.1",
"@types/yargs": "^16.0.0",
"acorn": "^6.4.2",
"acorn-dynamic-import": "^4.0.0",
"array.prototype.flat": "^1.2.4",
"autoprefixer": "^10.1.0",
"chokidar": "^3.4.3",
"core-js": "^3.8.1",
"crypto-js": "^4.2.0",
"css-loader": "^5.0.1",
"csv-parser": "^3.0.0",
"debug": "^4.3.1",
"decamelize": "^4.0.0",
"enhanced-resolve": "^5.4.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "6.2.0",
"fs": "0.0.1-security",
"graceful-fs": "^4.2.4",
"import-local": "^3.0.2",
"is-fullwidth-code-point": "^3.0.0",
"json-parse-better-errors": "^1.0.2",
"less": "^4.0.0",
"less-loader": "^7.2.1",
"loader-runner": "^4.1.0",
"memory-fs": "^0.5.0",
"mkdirp": "^1.0.4",
"neat-csv": "^6.0.0",
"neo-async": "^2.6.2",
"npx": "^10.2.2",
"office-addin-dev-certs": "^1.5.9",
"office-js": "^0.1.0",
"office-toolbox": "^0.3.0",
"office-ui-fabric-react": "^7.155.3",
"papaparse": "^5.3.0",
"path": "^0.12.7",
"path-exists": "^4.0.0",
"pkg-dir": "^5.0.0",
"postcss": "^8.4.31",
"postcss-loader": "4.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0",
"resolve-cwd": "^3.0.0",
"resolve-from": "^5.0.0",
"rimraf": "^3.0.2",
"set-blocking": "^2.0.0",
"shelljs": "^0.8.5",
"sjcl": "^1.0.8",
"source-map": "^0.7.3",
"string-width": "^4.2.0",
"style-loader": "^2.0.0",
"tapable": "^2.2.0",
"text-diff": "^1.0.1",
"ts-loader": "^8.0.14",
"tslint": "^5.20.1",
"typescript": "^3.9.6",
"watchpack": "^2.1.0",
"webassemblyjs": "^1.9.1",
"webpack": "^5.94.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^5.0.4",
"webpack-sources": "^2.2.0",
"xlsx": "^0.17.0",
"xregexp": "^4.4.1",
"y18n": "^5.0.5",
"yargs": "^16.2.0",
"yargs-parser": "^20.2.4"
},
"devDependencies": {
"@types/office-js": "^1.0.156",
"copy-webpack-plugin": "^5.1.1",
"html-webpack-plugin": "^4.5.0",
"shx": "^0.3.3",
"webpack-merge": "^5.7.3"
}
}