-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.31 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
{
"name": "@team-griffin/react-heading-section",
"version": "3.1.1",
"main": "dist/cjs/react-heading-section.js",
"module": "dist/es/react-heading-section.js",
"repository": "git@github.com:team-griffin/react-heading-section.git",
"author": "Joshua Thornton <joshua.thornton@heg.com>",
"license": "MIT",
"scripts": {
"prepublish": "npm run build",
"transpile": "babel src -d lib --copy-files",
"lint": "npm run lint:js && npm run flow",
"lint:js": "eslint -c ./config/.eslintrc.js 'src/**/*.js'",
"lint:js:fix": "eslint --fix -c ./config/.eslintrc.js 'src/**/*.js'",
"flow": "flow check; test $? -eq 0 -o $? -eq 2",
"build": "rollup --config rollup.config.js",
"ci": "npm run lint && npm run test && npm run build",
"postmerge": "yarn",
"storybook": "start-storybook -p 6006",
"test": "mocha --require babel-polyfill --compilers js:babel-register 'src/**/__tests__/*' -R spec",
"dockerfile:ci": "dockerscript ./docker/ci/dockerfile.js ./docker/ci/Dockerfile",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@team-griffin/eslint-config": "^3.2.0",
"@team-griffin/install-self-peers": "^1.0.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"dockerscript": "^0.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^4.13.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-react": "^7.5.1",
"mocha": "^4.0.1",
"react": "^16.3.0",
"react-test-renderer": "^16.3.0",
"rollup": "^1.16.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-memory": "^3.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify-es": "^0.0.1"
},
"dependencies": {
"recompose": "^0.x.x"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3 .0"
}
}