-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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": "custom-excel",
"version": "1.0.0",
"description": "",
"private": true,
"engines": {
"node": "20.11.0"
},
"scripts": {
"build:ved": "webpack --env mode=development",
"build:prod": "webpack --env mode=production",
"dev": "webpack serve --env mode=development --open",
"predeploy": "npm run build:prod",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SergeyKazarinov/custom-excel.git"
},
"keywords": [
"js",
"ts",
"typeScript",
"excel"
],
"author": "Sergey Kazarinov <[email protected]>",
"license": "ISC",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@types/node": "^20.11.28",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.1",
"sass": "^1.72.0",
"sass-loader": "^14.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.3"
},
"dependencies": {
"dotenv": "^16.4.5",
"gh-pages": "^6.1.1",
"normalize.css": "^8.0.1"
}
}