-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.38 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "fuksilaiterekisteri",
"version": "1.0.0",
"description": "Boilerplate for future toska frontend projects",
"main": "index.js",
"scripts": {
"dev": "docker-compose up",
"build": "webpack --mode=production",
"start:prod": "cross-env NODE_ENV=production node index.js",
"start:dev": "cross-env NODE_ENV=development nodemon index.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"stats": "webpack --mode production --json --optimize-minimize > stats.json",
"db:seed": "docker-compose run --rm --entrypoint 'npx sequelize-cli db:seed:all --url \"postgres://postgres:postgres@db:5432/postgres\"' app",
"cli": "node server/util/studentUpdaterCli.js",
"cypress:open": "cypress open",
"cypress:run": "cypress run --config video=true,videoCompression=false"
},
"engines": {
"node": ">=10.15"
},
"author": "Jami Kousa",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@sentry/browser": "^5.19.0",
"@sentry/node": "^6.8.0",
"axios": "^0.28.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"body-parser": "^1.18.3",
"cron": "^1.7.1",
"cross-env": "^5.2.1",
"css-loader": "^2.1.0",
"date-fns": "^2.14.0",
"dotenv": "^6.0.0",
"es6-error": "^4.1.1",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.3",
"express-async-errors": "^3.1.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"husky": "^1.3.1",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^0.5.0",
"module-alias": "^2.1.0",
"nodemailer": "^6.6.2",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"pg": "^7.12.1",
"react": "^16.9.0",
"react-datepicker": "^3.0.0",
"react-dom": "^v16.8.1",
"react-markdown": "^4.3.1",
"react-notifications": "^1.4.3",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-virtualized": "^9.21.1",
"readline": "^1.3.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"semantic-ui-css": "^2.3.1",
"semantic-ui-react": "^0.85.0",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"umzug": "^2.2.0",
"unfuck-spa-shibboleth-session": "^3.1.3",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"winston": "^3.2.1",
"winston-gelf-transporter": "^1.0.2"
},
"devDependencies": {
"@sentry/cli": "^1.55.0",
"babel-preset-stage-2": "^6.24.1",
"cypress": "^4.10.0",
"nodemon": "^1.18.10",
"webpack-dev-middleware": "^3.5.2",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.23.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"nodemonConfig": {
"ignore": [
"dist/*",
"client/*",
"cypress/*"
]
},
"_moduleAliases": {
"@root": ".",
"@controllers": "server/controllers",
"@models": "server/models",
"@services": "server/services",
"@util": "server/util",
"@database": "server/database",
"@middleware": "server/middleware"
}
}