-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 4.33 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 4.33 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@intellyo/intellyo-components",
"description": "Intellyo Application Design System",
"version": "12.4.1",
"main": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"pre-commit": [
"test",
"test:e2e",
"clean-test"
],
"license": "MIT",
"scripts": {
"build": "npm run build:css && gatsby build",
"build:components": "rm -rf dist && mkdir dist && babel src/components -d dist",
"build:css": "postcss src/postcss/main.css -o src/css/main.css",
"develop": "gatsby develop --host localhost --port 8000",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js'",
"test": "npm run lint",
"test:e2e": "E2E_OUTPUT=${E2E_OUTPUT-./e2e/test_results} E2E_ERRORSHOTS_OUTPUT=${E2E_ERRORSHOTS_OUTPUT-./e2e/errorShots} E2E_SCREENSHOTS=${E2E_SCREENSHOTS-./e2e/screenshots/} wdio",
"deploy": "npm run deploy:s3 && npm run deploy:tar && npm run deploy:release",
"deploy:s3": "cd public; babel-node ../s3",
"deploy:tar": "cd public; tar -czvf ../${npm_package_version}.tgz .",
"deploy:release": "mk-release --gh-user=$CIRCLE_PROJECT_USERNAME --gh-repo=$CIRCLE_PROJECT_REPONAME --version=$npm_package_version --asset-folder=.",
"lint": "eslint src e2e wdio.conf.js",
"lint:watch": "esw src -w",
"watch": "npm run watch:css & npm run develop & wait",
"watch:css": "chokidar 'src/postcss/**/*.css' -c 'npm run build:css' --initial -p",
"prepublish": "npm t && npm run build:css && npm run build:components",
"serve": "gatsby serve",
"clean-test": "find ./e2e/ \\( -name 'diff' -o -name 'screen' -o -name '*browser-compare-visual-regression' \\) -exec rm -r '{}' \\; || exit 0",
"preversion": "rm -rf CHANGELOG.md CHANGES.md",
"version": "conventional-changelog -p angular -i CHANGES.md -s -r 1 && git add CHANGES.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"devDependencies": {
"aws-sdk-then": "^1.1.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chokidar-cli": "^1.2.0",
"conventional-changelog-cli": "^1.3.21",
"dateformat": "^3.0.2",
"eslint": "^3.19.0",
"eslint-config-pi": "^10.0.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-mocha-no-only": "0.0.6",
"eslint-plugin-output-todo-comments": "0.0.7",
"eslint-plugin-react": "^6.10.3",
"eslint-watch": "^2.1.14",
"gatsby": "^1.9.128",
"gatsby-cli": "^1.1.25",
"gatsby-link": "^1.6.5",
"gatsby-plugin-react-helmet": "^1.0.1",
"lorem-ipsum": "^1.0.4",
"mk-release": "^1.0.1",
"mkdirp": "^0.5.1",
"node-resemble-js": "^0.2.0",
"png-crop": "0.0.1",
"postcss-at2x": "^3.2.0",
"postcss-cli": "^4.1.0",
"postcss-cssnext": "^2.11.0",
"postcss-custom-properties": "^5.0.2",
"postcss-flexibility": "^1.1.0",
"postcss-font-smoothing": "^0.1.0",
"postcss-for": "^2.1.1",
"postcss-import": "^7.1.3",
"postcss-media-minmax": "^2.1.2",
"postcss-mixins": "^5.4.1",
"postcss-reporter": "^3.0.0",
"postcss-simple-vars": "^3.0.0",
"postcss-utilities": "^0.6.1",
"pre-commit": "^1.2.2",
"prettier": "^1.5.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"slugify": "^1.2.6",
"wdio-junit-reporter": "^0.3.1",
"wdio-mocha-framework": "^0.5.11",
"wdio-sauce-service": "^0.4.4",
"wdio-selenium-standalone-service": "0.0.10",
"wdio-spec-reporter": "^0.1.3",
"wdio-static-server-service": "^1.0.1",
"wdio-visual-regression-service": "https://github.com/purposeindustries/wdio-visual-regression-service/releases/download/ignore-comparison/wdio-visual-regression-service-0.8.0.tgz",
"webdriver": "^5.0.0-rc1",
"webdriverio": "^4.9.11",
"window-or-global": "^1.0.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"debug": "^3.1.0",
"lodash.throttle": "^4.1.1",
"plotly.js": "^1.30.0",
"react-autosuggest": "^9.3.2",
"react-click-outside": "^3.0.1",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-hide-at": "^1.0.4",
"react-ionicons": "^1.5.9",
"react-motion": "^0.5.2",
"react-popper": "^0.7.4",
"react-show-at": "^1.0.0",
"react-tagsinput": "^3.19.0",
"rodal": "^1.6.1"
}
}