forked from cerner/terra-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.58 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "terra-framework",
"private": true,
"version": "0.1.0",
"description": "terra-framework",
"engines": {
"node": ">=8.9.2 <12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerner/terra-framework.git"
},
"keywords": [
"Cerner",
"Terra",
"Terra Framework",
"terra-framework"
],
"author": "Cerner Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cerner/terra-framework/issues"
},
"browserslist": [
"extends browserslist-config-terra"
],
"eslintConfig": {
"extends": "terra",
"rules": {
"react/forbid-prop-types": "false",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"./packages/*/src/terra-dev-site/**/*.jsx"
]
}
]
},
"settings": {
"polyfills": [
"promises"
]
}
},
"stylelint": {
"extends": "stylelint-config-terra"
},
"scripts": {
"bootstrap:hoist": "lerna bootstrap --hoist",
"clean": "lerna clean --yes && rm -rf node_modules",
"clean:install": "npm run clean && npm install",
"clean:obsolete-snapshots": "npm test -- -u",
"compile": "npm run compile:clean && npm run compile:build",
"compile:build": "lerna ls | cut -d ' ' -f1 | xargs -I {} babel packages/{}/src --out-dir packages/{}/lib --copy-files",
"compile:clean": "rm -rf packages/**/lib",
"compile:src": "lerna run compile",
"compile:prod": "rm -rf ./build; NODE_ENV=production 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",
"dependency-markdown": "node scripts/dependency-markdown-generator/DependencyMarkdownGenerator.js",
"docs": "node scripts/generate-markdown/markdown.config.js",
"heroku-prebuild": "npm install -g [email protected] && 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": "link-parent-bin && npm run compile && npm run bootstrap:hoist",
"publish": "npm whoami && check-installed-dependencies && npm run compile && npm test && lerna publish",
"postpublish": "npm run docs && npm run dependency-markdown && git add --all && git commit -m 'Updated DEPENDENCIES.md files'",
"start": "tt-serve --config node_modules/terra-dev-site/config/webpack/webpack.config.js",
"start-heroku": "tt-serve-static --port $PORT --site './build' ",
"start-prod": "tt-serve --config node_modules/terra-dev-site/config/webpack/webpack.config.js --env.disableHotReloading -p",
"start-static": "npm run compile:prod && tt-serve-static --site ./build",
"test": "npm run jest && npm run wdio",
"wdio": "wdio node_modules/terra-dev-site/config/wdio/wdio.conf.js"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"browserslist-config-terra": "^1.0.0",
"check-installed-dependencies": "^1.0.0",
"core-js": "^3.1.3",
"danger": "^8.0.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.2.2",
"enzyme": "^3.3.0",
"eslint-config-terra": "^2.0.0",
"eslint": "^5.0.0",
"gh-pages": "^2.0.1",
"glob": "^7.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"lerna": "^2.8.0",
"link-parent-bin": "^1.0.0",
"markdown-magic": "^0.1.25",
"raf": "^3.4.1",
"react-dom": "^16.8.5",
"react-intl": "^2.8.0",
"react-test-renderer": "^16.4.2",
"react": "^16.8.5",
"regenerator-runtime": "^0.13.2",
"stylelint-config-terra": "^3.0.0",
"stylelint": "^10.0.1",
"terra-aggregate-translations": "^1.0.0",
"terra-dev-site": "^5.0.0",
"terra-disclosure-manager": "^4.9.0",
"terra-enzyme-intl": "^3.0.0",
"terra-toolkit": "^5.0.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"webpack": "^4.30.0",
"xfc": "^1.2.1"
}
}