-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.36 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.36 KB
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
{
"name": "@idfive/icl",
"version": "1.0.0",
"description": "idfive's internal component library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "webpack --mode production",
"format": "prettier --write 'src/**/*.ts' 'src/**/*.scss'"
},
"keywords": [
"typescript",
"sass"
],
"author": {
"name": "idfive",
"email": "code@idfive.com",
"url": "https://idfive.com"
},
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"autoprefixer": "^10.4.4",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^8.14.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"mini-css-extract-plugin": "^2.6.0",
"postcss-focus-within": "^5.0.4",
"postcss-loader": "^6.2.1",
"postcss-object-fit-images": "^1.1.2",
"prettier": "^2.6.2",
"sass": "^1.49.11",
"sass-loader": "^12.6.0",
"ts-loader": "^9.2.8",
"typescript": "^4.6.4",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,scss}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"lodash": "^4.17.21"
}
}