forked from cerner/terra-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 5.41 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
128
129
130
131
132
133
{
"name": "terra-framework",
"private": true,
"version": "0.1.0",
"description": "terra-framework",
"engines": {
"node": "^10.0.0 || ^12.0.0 || ^14.0.0"
},
"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 @cerner/browserslist-config-terra"
],
"eslintConfig": {
"extends": "@cerner/terra",
"rules": {
"react/forbid-prop-types": "off"
}
},
"package-json-lint": {
"extends": "@cerner/package-json-lint-config-terra/package-json-lint.config.js",
"projectType": "module"
},
"stylelint": {
"extends": "@cerner/stylelint-config-terra",
"rules": {
"scss/at-mixin-pattern": "^(terra-)[a-z]+([a-z0-9-]+[a-z0-9]+)?$"
}
},
"scripts": {
"bootstrap:hoist": "lerna bootstrap --hoist",
"clean": "$(lerna clean --yes || true) && echo rm -rf node_modules",
"clean:install": "npm run clean && time npm install",
"clean:containers": "echo 'stopping containers:' && docker stop $(docker ps -a -q) && echo 'removing containers:' && docker rm $(docker ps -a -q)",
"clean:obsolete-snapshots": "npm test -- -u",
"compile": "npm run compile:clean && npm run compile:build",
"compile:build": "lerna run compile --parallel",
"compile:clean": "rm -rf packages/**/lib",
"compile:src": "lerna run compile",
"compile:fusion": "rm -rf ./build; NODE_ENV=production THEME=orion-fusion-theme webpack --mode=production --config webpack.config.js",
"compile:lowlight": "rm -rf ./build; NODE_ENV=production THEME=clinical-lowlight-theme webpack --mode=production --config webpack.config.js",
"compile:default": "rm -rf ./build; NODE_ENV=production webpack --mode=production --config webpack.config.js",
"danger": "danger ci",
"deploy": "npm run compile:prod && gh-pages -d build",
"dependency-markdown": "node scripts/dependency-markdown-generator/DependencyMarkdownGenerator.js",
"docs": "node scripts/root-readme-updater/index.js",
"docs:peerDependencies": "node scripts/peer-dependency-generator/index.js",
"heroku-postbuild": "npm install --only=dev && npm run compile:prod",
"jest": "jest",
"jest:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"jest:coverage": "jest --coverage",
"lint": "npm run lint:js && npm run lint:scss && npm run lint:package-json",
"lint:js": "eslint --ext .js,.jsx .",
"lint:js:fix": "eslint --ext .js,.jsx . --fix",
"lint:package-json": "terra package-json-lint",
"lint:scss": "stylelint 'packages/**/src/**/*.scss' --syntax scss",
"prepare-for-release": "terra prepare-for-release",
"pretest": "npm run lint",
"postinstall": "npm run bootstrap:hoist && npm run compile",
"start": "webpack serve",
"start-heroku": "terra express-server --port $PORT --site build",
"start-prod": "webpack serve --env disableHotReloading --mode=production",
"start-static": "npm run compile:prod && terra express-server --site build",
"test": "npm run lint && npm run jest && npm run wdio",
"test:docker": "npm run lint && npm run jest && npm run wdio:docker",
"wdio-default": "terra wdio",
"wdio-lowlight": "NODE_OPTIONS=--max-old-space-size=2048 terra wdio --themes clinical-lowlight-theme",
"wdio-fusion": "terra wdio --themes orion-fusion-theme",
"wdio": "terra wdio --themes terra-default-theme clinical-lowlight-theme orion-fusion-theme",
"wdio:docker": "terra wdio --disableSeleniumService=true --themes terra-default-theme clinical-lowlight-theme orion-fusion-theme"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@cerner/browserslist-config-terra": "^3.1.0",
"@cerner/eslint-config-terra": "^5.4.0",
"@cerner/jest-config-terra": "^1.0.0",
"@cerner/package-json-lint": "^1.3.0",
"@cerner/package-json-lint-config-terra": "^1.0.0",
"@cerner/stylelint-config-terra": "^4.0.0",
"@cerner/terra-cli": "^1.1.0",
"@cerner/terra-dev-site": "^7.0.0",
"@cerner/terra-functional-testing": "^3.3.0",
"@cerner/terra-open-source-scripts": "^1.1.0",
"@cerner/webpack-config-terra": "^3.0.1",
"core-js": "^3.1.3",
"danger": "^11.2.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.2.2",
"eslint": "^7.32.0",
"gh-pages": "^2.0.1",
"glob": "^7.1.1",
"jest": "^26.6.3",
"ky": "^0.12.0",
"lerna": "^6.4.1",
"postcss": "8.3.11",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-intl": "^2.9.0",
"regenerator-runtime": "^0.13.2",
"stylelint": "^13.0.0",
"terra-aggregate-translations": "^1.0.0",
"terra-application": "^1.48.0",
"terra-disclosure-manager": "^4.9.0",
"terra-enzyme-intl": "^3.0.0",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.1.4",
"xfc": "^1.2.1"
}
}