-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.24 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "smartbox-workspace",
"description": "A react template that includes the SmartBox UI kit and Storybook",
"private": true,
"scripts": {
"start:storybook": "start-storybook -p 9001 -c .storybook",
"start:storybook:static": "build-storybook && http-server ./storybook-static -p 9001 --silent",
"prebuild": "lerna bootstrap",
"build": "lerna run build --ignore @smartlogic/smartbox-site",
"build:site": "npm run bootstrap && lerna exec --scope @smartlogic/smartbox-site -- npm run build",
"clean": "lerna clean --yes",
"pretest": "npm run clean && lerna link",
"test:ci": "npm run test:unit:ci && npm run test:e2e:ci",
"test:e2e:headless": " node_modules/.bin/cypress run",
"test:e2e:gui": "node_modules/.bin/cypress open",
"test:e2e:ci": "start-server-and-test start:storybook:static http://localhost:9001 test:e2e:headless",
"test:unit": "node scripts/test.js --env=jsdom --config=./jest.config.json",
"test:unit:ci": "npm run test:unit -- --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": {
"@sparkpost/design-tokens": "0.0.4",
"downshift": "^3.2.10",
"jest-in-case": "^1.0.2",
"prop-types": "^15.6.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-focus-lock": "^2.0.5"
},
"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": "10.0.3",
"babel-jest": "^24.9.0",
"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",
"cypress": "^3.4.1",
"cypress-plugin-tab": "^1.0.1",
"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",
"http-server": "^0.11.1",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"jest-enzyme": "^6.0.0",
"lerna": "^3.16.4",
"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",
"start-server-and-test": "^1.10.0",
"style-loader": "^0.21.0",
"webpack": "^3.12.0"
},
"babel": {
"presets": [
"es2015",
"react",
"react-app"
],
"plugins": [
"transform-class-properties"
]
}
}