This repository has been archived by the owner on Jun 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.28 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
{
"name": "@magento/peregrine",
"version": "0.4.0",
"description": "The core runtime of Magento PWA",
"license": "(OSL-3.0 OR AFL-3.0)",
"author": "Magento Commerce",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/magento-research/peregrine"
},
"scripts": {
"build": "babel src -d dist --ignore test.js",
"danger": "danger-ci",
"clean": "rimraf dist",
"lint": "eslint 'src/**/*.js'",
"prepare": "npm-merge-driver install",
"prettier": "prettier --write '{src/**/,scripts/**/,}*.js'",
"prettier:check": "prettier --list-different '{src/**/,scripts/**/,}*.js'",
"test": "jest --no-cache --coverage",
"test:debug": "node --inspect-brk node_modules/.bin/jest -i",
"test:dev": "jest --watch",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o storybook-dist"
},
"dependencies": {},
"peerDependencies": {
"babel-runtime": "^6.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2"
},
"devDependencies": {
"@magento/eslint-config": "^1.0.0",
"@storybook/addon-actions": "^3.4.2",
"@storybook/addons": "^3.4.6",
"@storybook/react": "^3.4.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"danger": "^3.4.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.12.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"execa": "^0.10.0",
"intl": "^1.2.5",
"jest": "^22.4.3",
"jest-fetch-mock": "^1.4.1",
"npm-merge-driver": "^2.3.5",
"prettier": "^1.8.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"rimraf": "^2.6.2",
"storybook-readme": "^3.3.0"
}
}