|
1 | 1 | {
|
2 | 2 | "name": "@nordcloud/gnui",
|
3 |
| - "version": "1.8.1", |
| 3 | + "description": "Nordcloud Design System - a collection of reusable React components used in Nordcloud's SaaS products", |
| 4 | + "version": "1.9.0", |
4 | 5 | "license": "MIT",
|
5 | 6 | "main": "dist/index.js",
|
6 | 7 | "types": "dist/index.d.ts",
|
7 |
| - "repository": "git://github.com/nordcloud/gnui.git", |
| 8 | + "repository": { |
| 9 | + "type": "git", |
| 10 | + "url": "git+https://github.com/nordcloud/GNUI.git" |
| 11 | + }, |
| 12 | + "author": "Nordcloud Engineering", |
| 13 | + "bugs": { |
| 14 | + "url": "https://github.com/nordcloud/GNUI" |
| 15 | + }, |
| 16 | + "scripts": { |
| 17 | + "start": "react-scripts start", |
| 18 | + "build": "react-scripts build", |
| 19 | + "test": "react-scripts test", |
| 20 | + "eject": "react-scripts eject", |
| 21 | + "storybook": "start-storybook -p 9009 -s public", |
| 22 | + "build-storybook": "build-storybook -s public", |
| 23 | + "format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"", |
| 24 | + "check:types": "tsc", |
| 25 | + "lint": "eslint --ignore-path .gitignore --ext .ts,.tsx ." |
| 26 | + }, |
| 27 | + "engines": { |
| 28 | + "node": ">=14.15.5", |
| 29 | + "npm": ">=7.0.0" |
| 30 | + }, |
| 31 | + "browserslist": { |
| 32 | + "production": [ |
| 33 | + ">0.2%", |
| 34 | + "not dead", |
| 35 | + "not op_mini all" |
| 36 | + ], |
| 37 | + "development": [ |
| 38 | + "last 1 chrome version", |
| 39 | + "last 1 firefox version", |
| 40 | + "last 1 safari version" |
| 41 | + ] |
| 42 | + }, |
| 43 | + "husky": { |
| 44 | + "hooks": { |
| 45 | + "pre-commit": "lint-staged && npm run check:types" |
| 46 | + } |
| 47 | + }, |
| 48 | + "lint-staged": { |
| 49 | + "*.{ts,tsx}": [ |
| 50 | + "prettier --write", |
| 51 | + "eslint --fix" |
| 52 | + ] |
| 53 | + }, |
8 | 54 | "dependencies": {
|
9 | 55 | "@babel/core": "^7.9.6",
|
10 | 56 | "@babel/preset-env": "^7.9.6",
|
|
49 | 95 | "title": "^3.4.1",
|
50 | 96 | "typescript": "^3.9.7"
|
51 | 97 | },
|
52 |
| - "scripts": { |
53 |
| - "start": "react-scripts start", |
54 |
| - "build": "react-scripts build", |
55 |
| - "test": "react-scripts test", |
56 |
| - "eject": "react-scripts eject", |
57 |
| - "storybook": "start-storybook -p 9009 -s public", |
58 |
| - "build-storybook": "build-storybook -s public", |
59 |
| - "format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"", |
60 |
| - "check-types": "tsc", |
61 |
| - "lint": "eslint --ignore-path .gitignore --ext .ts,.tsx ." |
62 |
| - }, |
63 |
| - "engines": { |
64 |
| - "node": ">=14.15.5", |
65 |
| - "npm": ">=7.0.0" |
66 |
| - }, |
67 |
| - "eslintConfig": { |
68 |
| - "extends": "react-app" |
69 |
| - }, |
70 |
| - "browserslist": { |
71 |
| - "production": [ |
72 |
| - ">0.2%", |
73 |
| - "not dead", |
74 |
| - "not op_mini all" |
75 |
| - ], |
76 |
| - "development": [ |
77 |
| - "last 1 chrome version", |
78 |
| - "last 1 firefox version", |
79 |
| - "last 1 safari version" |
80 |
| - ] |
81 |
| - }, |
82 |
| - "husky": { |
83 |
| - "hooks": { |
84 |
| - "pre-commit": "lint-staged && npm run check-types" |
85 |
| - } |
86 |
| - }, |
87 |
| - "lint-staged": { |
88 |
| - "*.{ts,tsx}": [ |
89 |
| - "prettier --write", |
90 |
| - "eslint --fix" |
91 |
| - ] |
92 |
| - }, |
93 | 98 | "devDependencies": {
|
94 | 99 | "@storybook/addon-actions": "^6.0.5",
|
95 | 100 | "@storybook/addon-docs": "^6.0.5",
|
|
0 commit comments