-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.74 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": "epoc",
"version": "0.0.0",
"description": "description of the application",
"license": "ISC",
"repository": {},
"scripts": {
"build:app": "foal rmdir build/app && copy-cli \"src/**/*.html\" build && tsc -p tsconfig.app.json",
"build:app:w": "tsc -p tsconfig.app.json -w",
"start": "node ./build/index.js",
"start:w": "supervisor -w ./build --no-restart-on error ./build/index.js",
"build:test": "foal rmdir build && copy-cli \"src/**/*.html\" build && tsc -p tsconfig.test.json",
"build:test:w": "tsc -p tsconfig.test.json -w",
"start:test": "mocha --file \"./build/test.js\" \"./build/**/*.spec.js\"",
"start:test:w": "mocha --file \"./build/test.js\" -w \"./build/**/*.spec.js\"",
"test": "npm run build:test && concurrently \"npm run build:test:w\" \"npm run start:test:w\"",
"build:e2e": "foal rmdir build/e2e && copy-cli \"src/**/*.html\" build && tsc -p tsconfig.e2e.json",
"build:e2e:w": "tsc -p tsconfig.e2e.json -w",
"start:e2e": "mocha --timeout 4000 --file \"./build/e2e.js\" \"./build/e2e/**/*.js\"",
"start:e2e:w": "mocha --file \"./build/e2e.js\" -w \"./build/e2e/**/*.js\"",
"e2e": "npm run build:e2e && concurrently \"npm run build:e2e:w\" \"npm run start:e2e:w\"",
"build:scripts": "foal rmdir build/scripts && tsc -p tsconfig.scripts.json",
"build:scripts:w": "tsc -p tsconfig.scripts.json -w",
"lint": "eslint --ext ts src",
"lint:fix": "eslint --ext ts --fix src",
"build:frontend": "foal rmdir public/src; tsc --project frontend --outDir public/src",
"build:frontend:w": "foal rmdir public/src; tsc --project frontend --watch --outDir public/src",
"build:both": "concurrently \"npm run build:app\" \"npm run build:frontend\"",
"start:both": "concurrently \"npm run build:app:w\" \"npm run build:frontend:w\" \"npm run start:w\" ",
"develop": "npm run build:both && npm run start:both"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@foal/cli": "^1.11.1",
"@foal/core": "^1.11.2",
"@foal/jwt": "^1.11.1",
"@foal/mongoose": "^1.11.2",
"@foal/password": "^1.11.1",
"@typegoose/typegoose": "^7.4.1",
"@types/jquery": "^3.5.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.13",
"random": "^2.2.0",
"source-map-support": "^0.5.1"
},
"devDependencies": {
"@types/faker": "^5.1.5",
"@types/mocha": "^5.2.1",
"@types/mongoose": "^5.7.37",
"@types/node": "^8.0.47",
"@typescript-eslint/eslint-plugin": "~2.7.0",
"@typescript-eslint/parser": "~2.7.0",
"concurrently": "^3.5.1",
"copy": "^0.3.2",
"eslint": "^6.7.0",
"faker": "^5.1.0",
"mocha": "^5.2.0",
"supertest": "^3.3.0",
"supervisor": "^0.12.0",
"ts-mockito": "^2.6.1",
"typescript": "~3.9.7"
}
}