This repository was archived by the owner on Mar 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·108 lines (108 loc) · 3.77 KB
/
package.json
File metadata and controls
executable file
·108 lines (108 loc) · 3.77 KB
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
103
104
105
106
107
108
{
"name": "Katapulta",
"version": "1.0.1",
"description": "Pour emprunter ou preter son argent",
"main": "dist/server.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"auto-start": "NODE_ENV=development nodemon --exec \"npm run start-dev\" --ignore public/js",
"start-dev": "babel-node --presets 'react,es2015,stage-2' src/server.js",
"dist-client": "NODE_ENV=production npm run copy-client && BABEL_ENV=production webpack -p --bail --progress --colors --config webpack.production.config.js",
"copy-client": "npm run copy:img && npm run copy:html",
"copy:img": "cp -rf src/img/ ./dist-client/webapp/resources/img && cp -rf src/favicon.ico ./dist-client/webapp/resources",
"copy:html": "cp -rf src/static-prod ./dist-client/webapp",
"compile-prod": "npm run clean && npm run copy && babel ./src --experimental --source-maps-inline -d dist --ignore routes.js,static,static-prod,client,entryPoint,img --copy-files --presets=react,es2015,stage-2",
"clean": "rm -rf ./dist/*",
"copy": "npm run copy:font && npm run copy:config",
"copy:font": "cp -rf fonts ./dist/fonts",
"copy:config": "cp -rf src/config ./dist/config",
"startProd": "NODE_ENV=production pm2 start ./dist/server.js",
"lint": "eslint src",
"start-dev-ui": "npm run start-dev-hmr"
},
"author": "Julien Fumanti",
"license": "GNU GENERAL PUBLIC LICENSE",
"dependencies": {
"async": "^2.1.4",
"auth0-js": "^7.6.0",
"auth0-lock": "^10.8.1",
"aws-sdk": "^2.16.0",
"axios": "^0.15.2",
"babel-polyfill": "^6.16.0",
"blob-stream": "^0.1.3",
"bluebird": "^3.4.6",
"blueimp-load-image-npm": "^0.1.7",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"cors": "^2.8.1",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"flux": "^2.1.1",
"font-awesome": "^4.7.0",
"griddle-react": "^0.7.0",
"jquery": "~2.1.4",
"jwt-decode": "^2.1.0",
"lodash": "^4.17.4",
"mailcomposer": "^4.0.1",
"material-ui": "^0.16.1",
"moment": "^2.17.0",
"mongodb": "^2.2.16",
"pdfmake": "^0.1.25",
"react": "^15.3.1",
"react-bootstrap": "^0.30.1",
"react-bootstrap-date-picker": "^4.0.0",
"react-bootstrap-table": "^2.11.2",
"react-countup": "^1.3.0",
"react-dom": "^15.3.1",
"react-ga": "^2.1.2",
"react-images": "^0.5.2",
"react-photo-gallery": "^4.2.15",
"react-responsive-carousel": "^3.0.21",
"react-router": "^2.6.1",
"react-scrollchor": "^2.1.4",
"react-tap-event-plugin": "^1.0.0",
"soap": "^0.18.0",
"toastr": "^2.1.2",
"util": "^0.10.3",
"winston": "^2.3.0",
"xhr2": "^0.1.3"
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"css-loader": "^0.25.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"fs": "0.0.1-security",
"json-loader": "^0.5.4",
"keymirror": "^0.1.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"nodemon": "^1.11.0",
"postcss-loader": "^1.1.1",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.14.1"
},
"keywords": [
"font-awesome"
]
}