-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.62 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
{
"private": true,
"name": "csnext",
"license": "MIT",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tnocs/csnext.git"
},
"config": {
"unsafe-perm": true
},
"scripts": {
"postinstall": "lerna bootstrap && yarn run link",
"dev": "lerna run --parallel dev",
"clean": "lerna run clean & del-cli node_modules yarn.lock yarn-error.log package-lock.json",
"link": "lerna run link",
"build": "lerna run build",
"build:production": "lerna run build:production",
"unlink": "lerna run unlink",
"build:parallel": "lerna run --parallel build",
"dev:docs": "lerna run dev:docs",
"build:docs": "lerna run build:docs",
"build:typedoc": "del-cli ./packages/cs-docs/docs/references && npx typedoc ./packages",
"build:docs-all": "yarn build:typedoc && yarn build:docs",
"build:docker": "docker build -t tnocs/csnext .",
"publish:npm": "lerna publish --force-publish=*",
"publish:beta": "lerna publish --force-publish=* --canary --preid beta --yes",
"publish:release": "lerna publish from-git --yes",
"watch": "tsc -b -w packages",
"rebuild": "yarn run clean && yarn install && yarn run build",
"test": "lerna run test",
"lerna:version": "lerna version --conventional-graduate --preid patch",
"lerna:publish": "lerna publish --npm-client yarn --dist-tag patch"
},
"devDependencies": {
"@types/node": "^13.13.5",
"@types/yargs": "^15.0.4",
"cache-loader": "^4.1.0",
"core-js": "3.6.5",
"css-loader": "^3.5.3",
"deepmerge": "4.2.2",
"del-cli": "^3.0.0",
"fibers": "^5.0.0",
"lerna": "^3.21.0",
"postcss-loader": "^3.0.0",
"purify-css": "^1.2.5",
"html-loader": "^1.1.0",
"reflect-metadata": "^0.1.13",
"sass": "1.26.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"thread-loader": "^2.1.3",
"ts-loader": "^7.0.5",
"typedoc": "^0.16.11",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "3.9.3",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.2",
"vue-style-loader": "^4.1.2",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"yargs": "^15.3.1",
"yarn": "^1.22.4"
},
"dependencies": {
"markdown-it-link-attributes": "^3.0.0"
},
"version": "0.0.120"
}