-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "epsi-expert-system",
"version": "0.0.1",
"description": "",
"main": "app/index.js",
"scripts": {
"test": "NODE_ENV=test PORT=3000 npx cypress run",
"start": "NODE_ENV=production PORT=3000 npx nodemon app/index.js",
"dev": "NODE_ENV=dev PORT=3000 npx nodemon app/index.js",
"lint": "./node_modules/.bin/standard",
"lint-fix": "./node_modules/.bin/standard --fix",
"cypress": "npx cypress open",
"run-test": "NODE_ENV=test PORT=3000 node app/index.js & pid=$!; sleep 2; npx cypress run && kill -9 $pid || (kill -9 $pid && return $?)"
},
"pre-commit": [
"lint"
],
"standard": {
"ignore": [
"/app/public/js/*.js",
"/cypress/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/EPSIBordeaux/epsi-expert-system.git"
},
"author": "Romain DURADE - Sylvain METAYER",
"contributors": [
{
"email": "durade.romain@gmail.com",
"name": "Romain DURADE",
"url": "https://oriamn.com"
},
{
"email": "contact@sylvainmetayer.fr",
"name": "Sylvain METAYER",
"url": "https://sylvainmetayer.fr"
}
],
"maintainers": [
"Sylvain METAYER <contact@sylvainmetayer.fr> (https://sylvainmetayer.fr)",
"Romain DURADE <durade.romain@gmail.com> (https://oriamn.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/EPSIBordeaux/epsi-expert-system/issues"
},
"homepage": "https://github.com/EPSIBordeaux/epsi-expert-system#readme",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"nunjucks": "^3.1.3"
},
"devDependencies": {
"chokidar": "3.0.2",
"cypress": "3.4.1",
"nodemon": "1.19.1",
"pre-commit": "1.2.2",
"standard": "12.0.1"
},
"engines": {
"node": ">=8.0"
}
}