-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.92 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
{
"name": "sheets-project-training",
"version": "1.0.0",
"description": "Vanilla JavaScript project, something similar to Google Sheets",
"main": "webpack.config.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --open",
"build": "cross-env NODE_ENV=production webpack --mode production",
"test": "cross-env FORCE_COLOR=1 jest",
"test:watch": "jest --watch",
"lint": "cross-env FORCE_COLOR=1 node ./node_modules/eslint/bin/eslint.js ./src",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Darkzarich/sheets-project-training.git"
},
"keywords": [
"js",
"javascript",
"sheets",
"vanilla",
"javascript"
],
"author": "Darkzarich",
"license": "MIT",
"bugs": {
"url": "https://github.com/Darkzarich/sheets-project-training/issues"
},
"homepage": "https://github.com/Darkzarich/sheets-project-training#readme",
"private": true,
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.0",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-webpack-plugin": "^2.5.3",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.4.0",
"prettier": "2.2.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"webpack": "^5.31.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "v4.0.0-beta.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@types/jest": "^26.0.23",
"normalize.css": "^8.0.1"
}
}