-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 2.14 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
{
"name": "comicaljs",
"//version": "major and minor come from here, the patch number comes from TeamCity",
"version": "0.3.0",
"description": "Edit cartoon bubble frames around an HTML element",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"//files": "we get package.json, README, and LICENSE automatically. Use `npm pack` to test.",
"files": [
"dist/"
],
"keywords": [
"comic",
"balloon",
"speech bubbles"
],
"author": "SIL Bloom Team & Contributors",
"license": "MIT",
"private": false,
"repository": "https://github.com/BloomBooks/comical-js.git",
"devDependencies": {
"@babel/core": "^7.5.5",
"@storybook/html": "^6.1.15",
"@types/svg.js": "^2.3.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-publish": "^4.0.1",
"copy-webpack-plugin": "^5.0.4",
"globule": "^1.2.1",
"husky": "^3.0.9",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"shx": "^0.3.2",
"ts-loader": "^6.2.0",
"typescript": "^3.7.5",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"paper": "0.12.8"
},
"scripts": {
"storybook": "start-storybook -s ./storyStatic -p 6006",
"build-storybook": "build-storybook",
"We want to use a special package.json for the npm module we're making. That file is package-publish.json.": "//",
"buildMin": "shx rm -rf dist/ && webpack --config webpack.config-prod.js",
"build": "shx rm -rf dist/ && webpack",
"//publish-clean": "strips out the scripts, dependencies, etc and then does `npm publish`",
"publish-clean": "clean-publish"
},
"clean-publish": {
"packageManager": "yarn"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"packageManager": "[email protected]",
"volta": {
"node": "16.20.2",
"yarn": "1.22.19"
}
}