This repository has been archived by the owner on May 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
96 lines (96 loc) · 2.61 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
{
"name": "cds-hooks-sandbox",
"version": "0.0.0",
"description": "A React/Flux app generate by RF, powered with Babel",
"main": "build/bundle.js",
"dependencies": {
"axios": "^0.5.4",
"babel-preset-react": "^6.24.1",
"browser-request": "^0.3.3",
"debounce": "^1.0.0",
"fhirclient": "^0.1.11",
"flux": "^2.0.3",
"immutable": "^3.7.5",
"json-loader": "^0.5.2",
"jsrsasign": "^8.0.3",
"less": "^2.5.3",
"moment": "^2.10.6",
"object-assign": "^2.0.0",
"query-string": "^5.0.1",
"react": "^0.14.9",
"react-codemirror": "^1.0.0",
"react-day-picker": "~1.2.0",
"react-dom": "^0.14.9",
"react-markdown": "^1.0.3",
"request-promise": "^0.4.3",
"restify": "^4.3.0",
"striptags": "^2.0.3",
"url-parse": "^1.2.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-generator": "^6.25.0",
"babel-jest": "*",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.3.13",
"bootstrap": "*",
"bootstrap-webpack": "*",
"css-loader": "^0.28.4",
"exports-loader": "^0.6.2",
"express": "~4.15.3",
"extract-text-webpack-plugin": "^0.3.8",
"file-loader": "*",
"gulp": "^3.9.0",
"gulp-gh-pages": "^0.5.2",
"imports-loader": "*",
"jest-cli": "*",
"jquery": "*",
"less-loader": "^0.6.2",
"node-sass": "*",
"nodemon": "^1.11.0",
"react-bootstrap": "^0.31.0",
"react-hot-loader": "*",
"react-tools": "^0.13.3",
"sass-loader": "^6.0.6",
"style-loader": "*",
"url-loader": "*",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.5.0"
},
"scripts": {
"build": "webpack -p --config webpack.prod.config.js",
"compile:heroku": "webpack -p --config webpack.prod.config.js --progress",
"dev-frontend": "webpack-dev-server --host 0.0.0.0 --config webpack.dev.config.js --colors --content-base ./build",
"dev-services": "nodemon mock-cds-backend/index.js",
"heroku-posbuild": "npm install --only=dev && npm run compile:heroku",
"start": "node scripts/express/app.js",
"test": "jest"
},
"author": "",
"license": "",
"repository": {
"type": "git",
"url": "https://github.com/cds-hooks/legacy-sandbox.git"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
],
"globals": {
"SCRIPTS": "<rootDir>/src/scripts"
},
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/node_modules/"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}