-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpackage.json
64 lines (64 loc) · 1.89 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
{
"name": "chef-ui-library",
"version": "0.0.1",
"description": "UI library for Chef",
"main": "dist/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"module": "dist/index.mjs",
"files": [
"dist/"
],
"scripts": {
"build:prod": "npm run build",
"build": "stencil build",
"dev": "stencil build --dev --watch --serve --no-open",
"start": "npm run docs && npm run dev",
"test": "stencil test --spec --e2e",
"test.spec": "stencil test --spec",
"test.watch": "stencil test --spec --watch",
"test.e2e": "stencil test --e2e",
"docs": "typedoc --entryPointStrategy expand ./src",
"lint": "npm run lint.ts && npm run lint.sass",
"lint.ts": "tslint -p tsconfig.json",
"lint.sass": "stylelint '**/*.scss'"
},
"author": "Chef Software, Inc. <info@chef.io>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^2.2.3",
"d3": "^7.8.5",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"material-design-icons-iconfont": "^6.7.0",
"prismjs": "^1.30.0",
"puppeteer": "^23.0.2",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"set-value": "^4.1.0",
"tar": "^7.0.1"
},
"devDependencies": {
"@stencil/core": "^4.16.0",
"@stencil/router": "^1.0.1",
"@stencil/sass": "^1.0.1",
"@types/jest": "^24.0.16",
"@types/node": "^12.6.8",
"@types/puppeteer": "^1.12.4",
"ansi-regex": "^4.1.1",
"kind-of": "^6.0.3",
"merge": "^2.1.1",
"mkdirp": "1.0.0",
"node-notifier": "^10.0.0",
"node-sass": "^9.0.0",
"stylelint": "^16.5.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-sass-guidelines": "^11.1.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-scss": "^6.2.1",
"typedoc": "^0.25.13",
"typescript": "^5.4.4"
}
}