forked from Reinmar/warsawjs-workshop-30-spreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "warsawjs-workshop-30-spreadsheet",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Reinmar/warsawjs-workshop-30-spreadsheet.git"
},
"author": "Piotrek Koszuliński",
"license": "MIT",
"bugs": {
"url": "https://github.com/Reinmar/warsawjs-workshop-30-spreadsheet/issues"
},
"homepage": "https://github.com/Reinmar/warsawjs-workshop-30-spreadsheet#readme",
"scripts": {
"build": "webpack",
"dev": "webpack --mode development --watch",
"serve": "http-server",
"lint": "eslint --quiet '**/*.js'"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"eslintIgnore": [
"build/**"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"csvtojson": "^2.0.8",
"eslint": "^5.15.1",
"eslint-config-ckeditor5": "^1.0.11",
"http-server": "^0.11.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"lodash-es": "^4.17.11",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}