forked from cerner/terra-clinical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.73 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
{
"name": "terra-clinical",
"private": true,
"version": "0.1.0",
"description": "terra-clinical",
"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": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"clean:install": "npm run clean:all && npm install",
"clean:obsolete-snapshots": "npm test -- -u",
"compile": "lerna run compile",
"deploy": "lerna run --scope terra-clinical-site deploy",
"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",
"prepush": "node scripts/prepush/index.js",
"pretest": "npm run lint",
"postinstall": "npm run bootstrap",
"start": "cd packages/terra-clinical-site && npm run start",
"test": "jest && npm run test:nightwatch-default",
"test:nightwatch-default": "WEBPACK_CONFIG_PATH=../../../packages/terra-clinical-site/webpack.config 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.18.0",
"babel-core": "^6.18.2",
"babel-jest": "^18.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"enzyme": "^2.7.0",
"enzyme-to-json": "^1.4.5",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"glob": "^7.1.1",
"husky": "^0.13.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^18.1.0",
"lerna": "2.0.0-beta.36",
"load-json-file": "^2.0.0",
"react": "15.4.2",
"prop-types": "^15.5.6",
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2",
"react-router": "^3.0.2",
"shelljs": "^0.7.6",
"stylelint": "^7.8.0",
"stylelint-config-sass-guidelines": "^2.0.0",
"terra-toolkit": "^0.x"
}
}