-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 1.15 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
{
"name": "logger-example",
"version": "1.0.0",
"description": "Logger Example",
"main": "index.js",
"scripts": {
"build-backend": "babel src/backend --out-dir build/backend --source-maps --copy-files",
"build-frontend": "webpack --config ./webpack.config.js --progress --colors",
"build": "npm run build-backend && npm run build-frontend",
"build-dev": "NODE_ENV=development npm run build",
"build-prod": "NODE_ENV=production npm run build",
"start": "node build/backend/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Niklas Salmoukas <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.0",
"babel-plugin-js-logger": "^1.0.16",
"babel-plugin-transform-inline-environment-variables": "^0.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"express": "^4.15.3",
"html-webpack-plugin": "^2.28.0",
"js-logger": "^1.3.0",
"morgan": "^1.9.1",
"webpack": "^3.0.0"
}
}