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
76 lines (76 loc) · 1.91 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.91 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
{
"name": "competences-pro",
"version": "0.0.1",
"description": "Évaluer en ligne les compétences pro à travers des mises en situation",
"license": "AGPL-3.0-only",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack-dev-server --history-api-fallback --inline --progress --mode development",
"start": "node server.js",
"test": "./bin/test.sh",
"lint": "semistandard"
},
"engines": {
"node": "10.11.x",
"npm": "6.4.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betagouv/competences-pro.git"
},
"bugs": {
"url": "https://github.com/betagouv/competences-pro/issues"
},
"homepage": "https://github.com/betagouv/competences-pro#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"expect.js": "^0.3.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^13.0.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^0.4.4",
"mocha": "^5.2.0",
"node-sass": "^4.10.0",
"null-loader": "^0.1.1",
"sass": "^1.14.3",
"sass-loader": "^7.1.0",
"semistandard": "^13.0.1",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"express": "^4.16.4",
"jquery": "^3.3.1",
"pluralize": "^7.0.0"
},
"semistandard": {
"globals": [
"$",
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"expect",
"it",
"jQuery",
"xit"
],
"ignore": [
"public/",
"test_build/",
"dist/"
]
}
}