-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "fdp_calc",
"version": "0.1.0",
"description": "Responisve flight duty period calculation web app",
"main": "src/index.js",
"scripts": {
"test": "jest",
"watch": "webpack --watch",
"start:dev": "npm-run-all -p -r start:dev-webpack start:dev-backend",
"start:dev-backend": "nodemon server/app.js",
"start:dev-webpack": "webpack-dev-server",
"build": "webpack --ode production",
"prod-server": "npm run build && node server/app.js"
},
"author": "Patrick Kasiala",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"bootstrap": "^4.5.0",
"bootswatch": "^4.5.0",
"eventemitter3": "^3.1.2",
"html-minifier": "^4.0.0",
"jquery": "^3.5.1",
"lodash": "^4.17.11",
"mime-types": "^2.1.27",
"popper.js": "^1.16.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/runtime": "^7.9.6",
"@types/moment": "^2.13.0",
"@webpack-cli/init": "^0.1.5",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-polyfill": "^6.26.0",
"compile-ejs-loader": "0.0.2",
"css-loader": "^2.1.1",
"ejs": "^2.6.1",
"ejs-compiled-loader": "^1.1.0",
"ejs-loader": "^0.3.3",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.6.0",
"moment": "^2.26.0",
"moment-timezone": "^0.5.31",
"node-sass": "^4.14.1",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"ejs",
"ejx"
],
"transform": {
"^.+\\.ejs$": "./src/testing/preprocess-ejs",
"^.+\\.js$": "babel-jest"
}
}
}