forked from SparkPost/matchbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.69 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
{
"name": "matchbox-workspace",
"private": true,
"scripts": {
"start:site": "lerna exec --scope @sparkpost/matchbox-site -- npm run develop",
"start:storybook": "start-storybook -p 9001 -c .storybook",
"prebuild": "lerna bootstrap",
"build": "lerna run build --ignore @sparkpost/matchbox-site",
"build:site": "npm run bootstrap && lerna exec --scope @sparkpost/matchbox-site -- npm run build",
"clean": "lerna clean --yes",
"bootstrap": "lerna bootstrap",
"pretest": "npm run build && npm run clean && lerna link",
"test": "node scripts/test.js --env=jsdom --config=./jest.config.json",
"test-ci": "npm test -- --coverage && cat ./coverage/lcov.info | coveralls",
"deploy-storybook": "storybook-to-ghpages",
"build-storybook": "build-storybook",
"lint": "node node_modules/eslint/bin/eslint.js packages",
"lintfix": "npm run lint -- --fix",
"precommit": "lint-staged"
},
"lint-staged": {
"packages/**/*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"downshift": "^3.2.10",
"jest-in-case": "^1.0.2",
"prop-types": "^15.6.1",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.3",
"@storybook/addon-info": "^3.4.3",
"@storybook/addon-links": "^3.4.3",
"@storybook/addon-options": "^3.4.3",
"@storybook/addons": "^3.4.3",
"@storybook/react": "^3.4.3",
"@storybook/storybook-deployer": "^2.3.0",
"autoprefixer": "^8.4.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.1",
"classnames": "^2.2.5",
"coveralls": "^3.0.1",
"css-loader": "^0.28.11",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.1.0",
"eslint-config-sparkpost": "^1.4.1",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-lodash": "^2.7.0",
"eslint-plugin-react": "^7.8.2",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"jest-enzyme": "^6.0.0",
"lerna": "^2.10.2",
"lint-staged": "^7.1.0",
"node-sass": "^4.11.0",
"postcss-loader": "^2.1.5",
"react-test-renderer": "^16.8.6",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^3.12.0"
},
"babel": {
"presets": [
"es2015",
"react",
"react-app"
],
"plugins": [
"transform-class-properties"
]
}
}