-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.94 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
{
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:summary": "jest 2>&1 | grep '●'",
"test:coverage:ci": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.37",
"babel-jest": "^26.6.3",
"esbuild": "0.9.2",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"postcss": "^8.2.8",
"prettier": "2.2.1",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"projects": [
"./probe/jest.config.js",
"./server/jest.config.js"
]
},
"prettier": {
"useTabs": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,html,json}": "prettier --write"
},
"nodemonConfig": {
"watch": [
"server"
],
"ext": "ts,json",
"ignore": [
"server/**/*.spec.ts"
],
"exec": "ts-node ./server/index.ts"
},
"main": "./dist/index.js",
"name": "bleachcss",
"version": "0.0.1",
"author": "Thomas Genin <[email protected]>",
"repository": "https://github.com/genintho/bleachcss.git",
"license": "MIT",
"description": "In browser detection of unused CSS. Used selector are send back to an API endpoint.",
"keywords": [
"unused",
"unused css",
"selector",
"clean up",
"CSS"
],
"dependencies": {
"@octokit/rest": "^18.5.2",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"extract-zip": "^2.0.1",
"log-update": "^4.0.0",
"postcss-nested": "^5.0.5",
"postcss-scss": "^3.0.5",
"sqlite": "^4.0.21",
"sqlite3": "^5.0.2"
}
}