forked from cerner/terra-clinical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.12 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
{
"name": "terra-clinical",
"private": true,
"version": "0.1.0",
"description": "terra-clinical",
"engines": {
"node": "8.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerner/terra-clinical.git"
},
"keywords": [
"Cerner",
"Terra",
"Terra Clinical",
"terra-clinical"
],
"author": "Cerner Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cerner/terra-clinical/issues"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"bootstrap:hoist": "lerna bootstrap --hoist",
"clean:all": "lerna clean --yes && node scripts/clean-modules/index.js",
"clean:install": "npm run clean:all && npm install",
"clean:obsolete-snapshots": "npm test -- -u",
"compile": "lerna run compile",
"compile:prod": "webpack --config node_modules/terra-dev-site/config/webpack/webpack.config.js -p",
"danger": "danger ci",
"deploy": "npm run compile:prod && gh-pages -d build",
"heroku-prebuild": "npm install -g lerna@2.1.2 && lerna init",
"heroku-postbuild": "npm install --only=dev && npm run compile:prod",
"jest": "jest --config jestconfig.js",
"jest:coverage": "jest --coverage --config jestconfig.js",
"link-parent-bin": "link-parent-bin",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint --ext .js,.jsx .",
"lint:scss": "stylelint 'packages/**/src/**/*.scss' --syntax scss",
"pretest": "npm run lint",
"postinstall": "node scripts/post-install/index.js",
"postinstall:package": "npm run compile && npm run bootstrap",
"postinstall:project": "link-parent-bin && npm run compile && npm run bootstrap:hoist",
"publish": "npm whoami && check-installed-dependencies && npm run compile && npm test && lerna publish",
"start": "tt:serve",
"start-heroku": "tt:serve-static --site build",
"start-static": "tt:serve-static --config webpack.config",
"test": "npm run jest && npm run wdio",
"wdio": "wdio node_modules/terra-dev-site/config/wdio/wdio.conf.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^23.0.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"check-installed-dependencies": "^1.0.0",
"danger": "^3.7.14",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.2.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"gh-pages": "^1.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.0.2",
"lerna": "^2.11.0",
"link-parent-bin": "^0.2.0",
"nightwatch": "^0.9.19",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.1",
"shelljs": "^0.8.2",
"stylelint": "^9.2.0",
"stylelint-config-sass-guidelines": "^5.0.0",
"terra-dev-site": "^1.2.0",
"terra-toolkit": "^3.3.1"
}
}