|
| 1 | +{ |
| 2 | + "name": "design-system", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "", |
| 5 | + "main": "dist/index.js", |
| 6 | + "scripts": { |
| 7 | + "run": "node dist/index.js", |
| 8 | + "build:production": "cross-env NODE_ENV=production npm run build", |
| 9 | + "build": "gulp", |
| 10 | + "neon": "neon", |
| 11 | + "lint": "eslint --fix . --resolve-plugins-relative-to .", |
| 12 | + "lint:staged": "lint-staged", |
| 13 | + "test": "jest", |
| 14 | + "package:init": "script/init-package.sh package", |
| 15 | + "package:sync": "script/sync-package.sh package", |
| 16 | + "package:neon:init": "script/init-neon-package.sh package", |
| 17 | + "tsc:init": "tsc --init", |
| 18 | + "eslint": "eslint", |
| 19 | + "all:build": "script/run-script-all-package.sh build", |
| 20 | + "all:build:production": "script/run-script-all-package.sh build:production" |
| 21 | + }, |
| 22 | + "repository": { |
| 23 | + "type": "git", |
| 24 | + "url": "git+https://github.com/CourseDesign/design-system.git" |
| 25 | + }, |
| 26 | + "author": "", |
| 27 | + "license": "ISC", |
| 28 | + "bugs": { |
| 29 | + "url": "https://github.com/CourseDesign/design-system/issues" |
| 30 | + }, |
| 31 | + "homepage": "https://github.com/CourseDesign/design-system#readme", |
| 32 | + "husky": { |
| 33 | + "hooks": { |
| 34 | + "pre-push": "npm run test", |
| 35 | + "pre-commit": "npm run lint:staged" |
| 36 | + } |
| 37 | + }, |
| 38 | + "lint-staged": { |
| 39 | + "src/*.{js,ts}": [ |
| 40 | + "eslint --fix" |
| 41 | + ] |
| 42 | + }, |
| 43 | + "jest": { |
| 44 | + "transform": { |
| 45 | + "^.+\\.ts$": "ts-jest" |
| 46 | + }, |
| 47 | + "testRegex": "\\.spec\\.ts$", |
| 48 | + "moduleFileExtensions": [ |
| 49 | + "ts", |
| 50 | + "js" |
| 51 | + ], |
| 52 | + "modulePathIgnorePatterns": [ |
| 53 | + "dist" |
| 54 | + ], |
| 55 | + "globals": { |
| 56 | + "ts-jest": { |
| 57 | + "diagnostics": true |
| 58 | + } |
| 59 | + } |
| 60 | + }, |
| 61 | + "devDependencies": { |
| 62 | + "@types/jest": "^26.0.10", |
| 63 | + "@types/node": "^14.6.0", |
| 64 | + "@typescript-eslint/eslint-plugin": "^3.10.1", |
| 65 | + "@typescript-eslint/parser": "^3.10.1", |
| 66 | + "cross-env": "^7.0.2", |
| 67 | + "eslint": "^7.7.0", |
| 68 | + "eslint-config-airbnb-base": "^14.2.0", |
| 69 | + "eslint-config-prettier": "^6.11.0", |
| 70 | + "eslint-plugin-import": "^2.22.0", |
| 71 | + "eslint-plugin-prettier": "^3.1.4", |
| 72 | + "gulp": "^4.0.2", |
| 73 | + "gulp-typescript": "^6.0.0-alpha.1", |
| 74 | + "husky": "^4.2.5", |
| 75 | + "jest": "^26.4.2", |
| 76 | + "lint-staged": "^10.2.13", |
| 77 | + "neon-cli": "^0.4.0", |
| 78 | + "prettier": "^2.1.1", |
| 79 | + "ts-jest": "^26.3.0", |
| 80 | + "typescript": "^4.0.2" |
| 81 | + } |
| 82 | +} |
0 commit comments