forked from cerner/terra-clinical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 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
98
{
"name": "terra-clinical",
"private": true,
"version": "0.1.0",
"description": "terra-clinical",
"engines": {
"node": "8.3.0"
},
"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"
},
"jest": {
"collectCoverageFrom": [
"packages/**/src/*.js",
"packages/**/src/*.jsx"
],
"setupFiles": [
"./jestsetup.js"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
}
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean:all": "rimraf ./packages/*/node_modules && rimraf ./node_modules",
"clean:install": "npm run clean:all && npm install",
"clean:obsolete-snapshots": "npm test -- -u",
"compile": "lerna run compile",
"compile:heroku": "cd packages/terra-clinical-site && npm run compile:heroku",
"danger": "danger",
"deploy": "lerna run --scope terra-clinical-site deploy",
"heroku-prebuild": "npm install -g lerna@2.0.0-rc.4 && lerna init",
"heroku-postbuild": "npm install --only=dev && npm run compile:heroku",
"jest": "jest",
"jest:coverage": "jest --coverage",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint --ext .js,.jsx .",
"lint:scss": "lerna run lint:scss",
"pretest": "npm run lint",
"postinstall": "npm run compile && npm run bootstrap",
"props-table": "lerna run props-table",
"publish": "npm whoami && check-installed-dependencies && npm run compile && npm test && npm run props-table && lerna publish",
"start": "cd packages/terra-clinical-site && npm run start",
"start:express": "node scripts/express/app.js",
"test": "jest && npm run test:nightwatch-default",
"test:nightwatch-default": "node ./node_modules/terra-toolkit/lib/scripts/nightwatch-process.js --env default-tiny,default-small,default-medium,default-large,default-huge,default-enormous"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^20.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"check-installed-dependencies": "^1.0.0",
"danger": "^1.0.0",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"express": "^4.15.2",
"glob": "^7.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^18.0.0",
"lerna": "2.0.0-rc.4",
"load-json-file": "^2.0.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router": "^3.0.5",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"shelljs": "^0.7.7",
"stylelint": "~8.0.0",
"stylelint-config-sass-guidelines": "^3.0.0",
"terra-props-table": "^1.0.0",
"terra-toolkit": "^1.2.2"
}
}