-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.59 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.59 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
{
"name": "@pariveda-solutions/react-toolkit",
"version": "0.1.5",
"description": "Component library for React applications",
"repository": {
"type": "git",
"url": "https://github.com/pariveda-accelerators/react-toolkit.git"
},
"author": {
"name": "Zak Butcher",
"email": "zak.s.butcher@gmail.com"
},
"license": "MIT",
"private": false,
"engines": {
"node": "14.2.0"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --tsconfig ./tsconfig.json && yarn build-styles",
"heroku-postbuild": "build-storybook",
"test": "tsdx test --passWithNoTests",
"test:ci-local-config": "circleci config process .circleci/config.yml > process.yml",
"test:ci-local": "yarn test:ci-local-config && circleci local execute -c process.yml --job build-and-test",
"test:loki": "loki test",
"loki:ci": "yarn build-storybook && loki test --requireReference --reactUri file:\"$PWD/dist/storybook-web\" --chromeDockerImage circleci/node:14.2.0-browsers",
"lint": "tsdx lint",
"prepare": "yarn build",
"storybook": "start-storybook -p 4000 --ci",
"build-storybook": "build-storybook -c .storybook -o dist/storybook-web",
"build-styles": "node ./sass/node-sass.js",
"watch-styles": "nodemon --watch ./sass -e scss -x \"yarn build-styles\""
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 85,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/tmp.esm.js",
"devDependencies": {
"@babel/core": "^7.9.6",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.4",
"@types/classnames": "^2.2.10",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/styled-components": "^5.1.0",
"babel-loader": "^8.1.0",
"chromatic-sass": "^0.1.8",
"classnames": "^2.2.6",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"loki": "^0.20.3",
"node-sass": "^4.14.0",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup-plugin-scss": "^2.4.0",
"styled-components": "^5.1.0",
"ts-loader": "^7.0.2",
"tsconfig-paths": "^3.9.0",
"tsdx": "^0.13.2",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
}
}