forked from pluralsight/classic-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.85 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "design-system",
"version": "1.0.0",
"description": "Pluralsight design system",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">= 7.9",
"npm": ">= 4.2"
},
"author": "jaketrent",
"keywords": [
"pluralsight",
"design system",
"pattern library"
],
"main": "packages/site/index.js",
"scripts": {
"bootstrap": "lerna bootstrap --hoist && link-parent-bin",
"clean": "lerna clean",
"generate": "plop",
"generate:component": "plop component",
"lint": "eslint . --quiet",
"lint:ci": "eslint .",
"octopus:deploy": "octopus-deploy-create-release-and-deploy",
"octopus:publish": "gulp octopus-publish",
"publish": "lerna publish --conventional-commits --message \"build: publish\"",
"publish:beta": "npm run publish -- --npm-tag=beta",
"site": "cd packages/site && npm start",
"start": "npm run site",
"test": "jest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"package.json": [
"format-package -w"
]
},
"dependencies": {
"babel-eslint": "^10.0.3",
"glamor": "^2.20.40",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-transition-group": "^4.3.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@commitlint/config-lerna-scopes": "^8.2.0",
"@octopusdeploy/gulp-octo": "0.0.12",
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-links": "^5.2.5",
"@storybook/addon-storyshots": "^5.2.5",
"@storybook/addons": "^5.2.5",
"@storybook/preset-typescript": "^2.1.0",
"@storybook/react": "^5.2.5",
"@svgr/cli": "^4.3.3",
"@testing-library/jest-dom": "^5.1.0",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"babel-loader": "^8.0.6",
"babel-plugin-macros": "^2.6.1",
"core-js": "^2.6.10",
"cross-env": "^6.0.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"eslint-plugin-standard": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^4.1.0",
"format-package": "^5.2.0",
"gulp": "^3.9.1",
"gulp-bump": "^3.1.0",
"husky": "^4.2.1",
"import-all.macro": "^2.0.3",
"jest": "^25.1.0",
"jest-axe": "^3.2.0",
"jest-prop-type-error": "^1.1.0",
"jest-watch-typeahead": "^0.4.0",
"lerna": "^3.18.3",
"link-parent-bin": "^1.0.2",
"lint-staged": "^10.0.7",
"npm-run-all": "^4.1.5",
"octopus-deploy": "^6.0.0",
"plop": "^2.5.3",
"prettier": "^1.18.2",
"prettier-eslint-cli": "^5.0.0",
"raf": "^3.4.1",
"react-test-renderer": "^16.11.0",
"require-context.macro": "^1.2.2",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.41.2",
"yargs": "^14.2.0"
}
}