-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·74 lines (74 loc) · 2.65 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
{
"name": "my-awesome-therapist",
"version": "1.0.0",
"description": "My Therapist App is designed with the independent therapist and their practice in mind. The app will include views for the therapist (authorization required), for clients (authorization required), and for the public (non-authenticated users).",
"main": "index.js",
"scripts": {
"webpack:dev": "webpack -d",
"copy": "cp src/index.html dist/index.html && cp -R src/app/images dist/app",
"dev": "npm run webpack:dev && npm run copy && webpack-dev-server --content-base src/ --inline --hot",
"dev:no-hot": "npm run webpack:dev && npm run copy && webpack-dev-server --content-base src/ --inline",
"dev:start": "npm run webpack:dev && npm run copy && npm start",
"postinstall": "npm rebuild node-sass && webpack -p && npm run copy",
"prod:start": "npm run postinstall && npm start",
"start": "node server.js",
"test": "react-scripts test --env=jsdom"
},
"devDependencies": {
"jest": "^17.0.3",
"jest-cli": "^17.0.3",
"react-scripts": "^0.8.2",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"classnames": "^2.2.5",
"css-loader": "^0.25.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"firebase": "^3.6.1",
"font-awesome": "^4.7.0",
"history": "^4.4.1",
"import": "0.0.6",
"jquery": "^3.1.1",
"json-loader": "^0.5.4",
"lodash": "^4.17.2",
"loopobject": "^1.1.0",
"material-ui": "^0.16.4",
"minimatch": "^3.0.3",
"moment": "^2.17.1",
"moment-recur": "^1.0.5",
"moment-timezone": "^0.5.10",
"node-sass": "^3.10.1",
"re-base": "^2.4.0",
"react": "^15.4.1",
"react-addons-create-fragment": "^15.4.1",
"react-custom-scrollbars": "^4.0.0",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^4.0.0-alpha.6",
"react-tap-event-plugin": "^2.0.1",
"react-widgets": "^3.4.5",
"sass-loader": "^4.0.2",
"source-map": "^0.5.6",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoniWeiss-tiy/My-Awesome-Therapist-App.git"
},
"author": "Joni Weiss",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoniWeiss-tiy/My-Awesome-Therapist-App/issues"
},
"homepage": "https://github.com/JoniWeiss-tiy/My-Awesome-Therapist-App#readme"
}