-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.75 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
{
"name": "@kibibit/kb-talking-avatars",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "rimraf lib",
"build": "webpack",
"build:compile-styles": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 src/style.scss lib/style.css",
"start": "webpack serve",
"start:dev": "concurrently --names \"CSS,WEBPACK\" -c \"bgMagenta.bold,bgYellow.black.bold\" \"npm run build:compile-styles -- --watch\" \"npm run start\"",
"lint": "eslint -c ./.eslintrc.js \"{src,apps,libs,test,examples}/**/*.js\"",
"lint:fix": "eslint -c ./.eslintrc.js \"{src,apps,libs,test,examples}/**/*.js\" --fix",
"contributors:all": "cross-env HUSKY=0 node ./tools/get-all-contributors.js",
"contributors:add": "cross-env HUSKY=0 all-contributors add",
"contributors:generate": "cross-env HUSKY=1 all-contributors generate",
"semantic-release:setup": "semantic-release-cli setup",
"semantic-release": "cross-env HUSKY=0 semantic-release",
"test": "jest",
"test:watch": "jest --watch --verbose",
"test:cov": "jest --coverage --verbose",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"author": "thatkookooguy <[email protected]>",
"license": "MIT",
"devDependencies": {
"clean-css-cli": "^5.6.2",
"concurrently": "^6.4.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"http-server": "^14.1.1",
"husky": "^7.0.4",
"jest": "^29.7.0",
"node-sass": "^9.0.0",
"npm-watch": "^0.11.0",
"rimraf": "^5.0.5",
"uglifyjs": "^2.4.11",
"webpack": "^5.89.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.15.1"
}
}