forked from betagouv/eva
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.89 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.89 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
{
"name": "eva",
"version": "0.0.1",
"description": "Évaluer en ligne les compétences transversales à travers des mises en situation professionnelles",
"license": "AGPL-3.0-only",
"scripts": {
"build": "webpack --mode production",
"build-dev": "webpack --watch --progress --mode development",
"dev": "npm run start & npm run build-dev",
"test": "jest",
"test:watch": "jest --watch --unhandled-rejections=strict",
"lint": "eslint --cache src tests",
"lint--fix": "eslint --cache --fix src tests",
"start": "node server.js",
"optimisation-png": "find src -name '*.png' -exec optipng {} \\;",
"prepare": "husky install"
},
"engines": {
"node": "20",
"npm": "10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betagouv/eva.git"
},
"bugs": {
"url": "https://github.com/betagouv/eva/issues"
},
"homepage": "https://github.com/betagouv/eva#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-syntax-dynamic-import": "^7.8",
"@babel/preset-env": "^7.16.0",
"@eslint/js": "^10.0.1",
"@vue/compiler-sfc": "^3.1.0",
"@vue/test-utils": "^2.0.2",
"@vue/vue3-jest": "^29.2.6",
"acorn": "^8.6.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.20.0",
"css-loader": "^5.2",
"eslint": "^10.1.0",
"eslint-plugin-vue": "^10.8.0",
"favicons-webpack-plugin": "^6.0.0",
"git-revision-webpack-plugin": "^3.0",
"globals": "^17.4.0",
"html-webpack-plugin": "^5.5",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^29.0.1",
"jsdom-global": "^3.0.2",
"lint-staged": "^16.4.0",
"mini-css-extract-plugin": "^2.10.1",
"node-forge": ">=1.3.0",
"path-browserify": "^1.0.1",
"rollbar-sourcemap-webpack-plugin": "^3.3.0",
"sass": "^1.45",
"sass-loader": "^12.x",
"style-loader": "^2.0",
"vscode-langservers-extracted": "^4.10.0",
"vue-eslint-parser": "^10.4.0",
"vue-loader": "^16.0.0",
"webpack-dev-server": "^5.2",
"webpack-node-externals": "^3.0.0",
"workbox-webpack-plugin": "^7.4.0"
},
"dependencies": {
"@gouvfr/dsfr": "^1.14.2",
"express": "^4.17.1",
"gsap": "^3.7.1",
"i18next": "^21.6",
"jquery": "^3.6.0",
"js-cookie": "^3.0.1",
"kind-of": "^6.0.3",
"marked": "^4.0.12",
"mobile-device-detect": "^0.4.3",
"query-string": "^6.14.1",
"rollbar": "^3.1.0",
"uuid": "^8.3.2",
"vue": "^3.2.38",
"vue3-keypress": "^4.0.1",
"vuedraggable": "^4.1.0",
"vuex": "^4.0.2",
"webpack": "^5.x",
"webpack-cli": "^4.9"
},
"lint-staged": {
"*.png": "optipng"
}
}