forked from telus-labs/tds-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
156 lines (156 loc) · 4.73 KB
/
Copy pathpackage.json
File metadata and controls
156 lines (156 loc) · 4.73 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "@telusdigital/tds",
"version": "1.0.1",
"description": "TELUS Design System",
"license": "MIT",
"main": "dist/tds.cjs.js",
"module": "dist/tds.es.js",
"files": [
"dist",
"src",
"CHANGELOG.md",
"CONTRIBUTING.md",
"UPGRADING.md"
],
"scripts": {
"build:css": "postcss --use cssnano --replace dist/tds.css",
"build:js": "rollup -c config/rollup.config.js",
"build:scss": "sh ./scripts/cp-scss.sh",
"build-package": "yarn build:js && yarn build:css && yarn build:scss",
"build-gitbook": "gitbook build guide guide/_book",
"build-styleguide": "styleguidist build --config config/styleguide.config.js",
"build:docs-staging": "yarn build-styleguide && gitbook build guide build/staging",
"deploy:docs": "node ./scripts/deploy-docs.js",
"deploy:package": "scripts/publish.sh",
"dev": "styleguidist server --config config/styleguide.config.js",
"gitbook": "gitbook serve guide",
"gitbook:install": "gitbook install guide",
"lint:js": "eslint src config docs scripts --ext '.js,.jsx' --config config/.eslintrc.json --fix",
"lint:scss": "stylelint 'src/components/**/*.scss' --config config/.stylelintrc.json",
"lint:ec": "echint",
"lint": "yarn lint:js && yarn lint:scss && yarn lint:ec",
"packup": "yarn build-package && yarn pack",
"precommit": "yarn lint && yarn test && yarn build-package && yarn build-styleguide",
"release:changelog": "changelog",
"release": "scripts/release.sh",
"scaffold": "node scripts/scaffold.js",
"test:ci": "yarn run lint && yarn run test",
"test:u": "yarn test -u",
"test:watch": "yarn test --watch",
"test": "jest --config config/jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/telusdigital/tds.git"
},
"author": "TELUS digital",
"engines": {
"node": ">=8"
},
"bugs": {
"url": "https://github.com/telusdigital/tds/issues"
},
"homepage": "http://tds.telus.com",
"devDependencies": {
"@telusdigital/eslint-config": "^1.1.2",
"airbnb-prop-types": "^2.8.1",
"autoprefixer": "^7.1.5",
"aws-sdk": "^2.114.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"classnames": "^2.2.5",
"core-js": "^2.5.1",
"css-loader": "^0.28.4",
"css-mediaquery": "^0.1.2",
"css-modules-loader-core": "^1.1.0",
"cssnano": "^3.10.0",
"cz-conventional-changelog": "^2.0.0",
"echint": "^4.0.1",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"enzyme-to-json": "^3.0.1",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "7.0.0",
"file-loader": "^1.1.5",
"generate-changelog": "^1.3.0",
"gitbook-cli": "^2.3.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.2.1",
"jest-enzyme": "^4.0.1",
"node-sass": "^4.5.3",
"postcss": "^6.0.7",
"postcss-cli": "^4.1.0",
"postcss-loader": "^2.0.8",
"postcss-modules": "^0.8.0",
"prettier": "^1.7.4",
"react": "^16.1.0",
"react-broadcast": "^0.6.0",
"react-dom": "^16.1.0",
"react-flexbox-grid": "^2.0.0",
"react-media": "^1.6.1",
"react-styleguidist": "^6.0.29",
"react-test-renderer": "^16.0.0",
"react-transition-group": "^2.2.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^0.5.5",
"s3-website": "^3.1.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.2.0",
"stylelint-config-css-modules": "^1.1.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-scss": "^1.5.1",
"url-loader": "^0.5.9",
"webpack": "^3.3.0"
},
"peerDependencies": {
"react": ">=15",
"react-dom": ">=15"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
},
"echint": {
"ignore": [
"**/node_modules/**",
"config/styleguide/**",
"**/fonts/**",
"**/dist/**",
"docs/components/Logo/Logo.svg",
"**/**.svg",
"**.log",
"**/__snapshots__/**",
"docs/elements/**",
"icons/scripts/icons.js",
"styleguide/**",
"**.tgz",
"guide/components/**",
"guide/_book/**",
"build/**"
]
}
}