-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "@quartz/interface",
"version": "1.1.5",
"description": "",
"engines": {
"node": ">=12"
},
"sideEffects": false,
"scripts": {
"build:storybook": "build-storybook -o .storybook/build",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rm -rf dist",
"copy": "./copy.sh",
"new": "npm run copy Example $1",
"start": "start-storybook -p 8600",
"test": "npm run test:lint && npm run test:unit",
"test:eslint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore --ignore-pattern *.d.ts .",
"test:lint": "npm-run-all --parallel --continue-on-error --aggregate-output test:eslint test:stylelint test:types",
"test:stylelint": "stylelint --ignore-path .gitignore '**/*.scss'",
"test:types": "tsc --noEmit",
"test:unit": "jest"
},
"author": "Quartz",
"license": "ISC",
"files": [
"dist/**/*",
"src/**/*"
],
"main": "src/components/index",
"module": "src/components/index",
"types": "dist/index.d.ts",
"dependencies": {
"@quartz/styles": "^0.2.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@quartz/eslint-config-react": "^1.1.5",
"@quartz/js-utils": "^2.0.0",
"@quartz/stylelint-config": "^1.2.0",
"@storybook/addon-a11y": "^6.1.10",
"@storybook/addon-actions": "^6.1.10",
"@storybook/addon-essentials": "^6.1.10",
"@storybook/addon-links": "^6.1.10",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.1.10",
"@storybook/theming": "^6.1.10",
"@types/jest": "^26.0.15",
"babel-loader": "^8.2.2",
"classnames": "^2.2.6",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.27.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"stylelint": "^13.6.1",
"typescript": "^4.5.5"
}
}