-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.72 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.72 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
{
"name": "@team-griffin/react-dye",
"version": "3.0.2",
"main": "dist/cjs/react-dye.js",
"module": "dist/es/react-dye.js",
"repository": "git@github.com:team-griffin/react-dye.git",
"author": "Joshua Thornton <joshua.thornton@heg.com>",
"license": "MIT",
"scripts": {
"prepublish": "npm run build",
"transpile": "babel src -d lib --copy-files",
"lint": "eslint -c ./config/.eslintrc.js 'src/**/*.js'",
"build-storybook": "build-storybook",
"build": "rm -rf dist && rollup --config ./rollup.config.js",
"test": "node_modules/.bin/karma start ./config/karma.conf.js",
"test:single": "yarn run test -- --single",
"ci": "npm run lint && npm run test && npm run build",
"postmerge": "yarn",
"dockerfile:ci": "dockerscript ./docker/ci/dockerfile.js ./docker/ci/Dockerfile",
"storybook": "start-storybook -p 6006"
},
"devDependencies": {
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@team-griffin/eslint-config": "^3.0.3",
"babel-cli": "^6.23.0",
"babel-core": "^6.1.21",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.5.0",
"babel-runtime": "^6.26.0",
"cross-env": "^7.0.2",
"dockerscript": "^0.0.6",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.5.1",
"rollup": "^2.3.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.8.0"
}
}