forked from FluxNotes/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.71 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
{
"name": "flux-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-require-ignore": "0.1.1",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"chai": "4.1.2",
"commander": "2.9.0",
"cql-exec-fhir": "^1.0.0",
"cql-exec-vsac": "^1.0.0",
"cql-execution": "^1.2.1",
"d3-array": "^1.2.1",
"d3-scale": "^1.0.7",
"d3-time": "^1.0.8",
"downshift": "^1.30.1",
"es6-shim": "0.35.3",
"flat": "^4.1.0",
"font-awesome": "4.7.0",
"guid": "0.0.12",
"history": "^4.7.2",
"immutable": "3.8.1",
"interact.js": "1.2.8",
"material-ui": "v1.0.0-beta.30",
"material-ui-icons": "1.0.0-beta.15",
"mkdirp": "0.5.1",
"moment": "2.22.0",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.2",
"positions": "1.6.1",
"prop-types": "15.5.10",
"rc-calendar": "^9.0.4",
"rc-tooltip": "^3.4.8",
"react": "15.5.4",
"react-autosuggest": "9.3.2",
"react-calendar-timeline": "0.15.2",
"react-copy-to-clipboard": "5.0.0",
"react-day-picker": "6.2.1",
"react-dom": "15.5.4",
"react-flexbox-grid": "1.1.3",
"react-fontawesome": "^1.6.1",
"react-ga": "2.2.0",
"react-minimap": "0.7.2",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "0.9.5",
"react-tap-event-plugin": "2.0.1",
"recharts": "1.0.0-beta.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^5.0.0",
"redux-thunk": "^2.2.0",
"run-script-os": "1.0.2",
"shr_rest_client": "^0.0.6",
"slate": "0.20.2",
"slate-auto-replace": "0.5.0",
"sync-request": "^4.1.0"
},
"devDependencies": {
"enzyme": "3.0.0",
"enzyme-adapter-react-15": "1.0.0",
"react-test-renderer": "15.6.2",
"testcafe": "0.17.1"
},
"resolutions": {
"moment": "2.22.0",
"ucum": "cmoesel/ucum.js#es5-friendly"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"eject": "react-scripts eject",
"parse": "babel-node --presets es2015,react --plugins transform-class-properties,transform-es2015-destructuring,transform-object-rest-spread ./src/noteparser/app.js",
"patient-date-update": "node ./src/patient-date-updater/app.js",
"test": "run-script-os",
"test:win32": "yarn test-backend:win32&&yarn test-ui:win32",
"test::darwin:linux": "yarn test-backend:darwin:linux && yarn test-ui:darwin:linux",
"test-fullapp": "run-script-os",
"test-fullapp:win32": "set CI=true&&react-scripts test --env=jsdom test\\backend\\views\\FullApp.test.js",
"test-fullapp:darwin:linux": "CI=true react-scripts test --env=jsdom test/backend/views/FullApp.test.js",
"test-backend": "run-script-os",
"test-backend:win32": "set CI=true&&react-scripts test --env=jsdom",
"test-backend:darwin:linux": "CI=true react-scripts test --env=jsdom",
"test-ui": "run-script-os",
"test-ui:win32": "yarn test-ui-all",
"test-ui:darwin:linux": "yarn test-ui-chrome",
"test-ui-all": "testcafe chrome,ie ./test/ui/** --app \"yarn start\"",
"test-ui-chrome": "testcafe chrome ./test/ui/** --app \"yarn start\"",
"test-ui-ie": "testcafe ie ./test/ui/** --app \"yarn start\""
}
}