-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.58 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.58 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
{
"name": "playground",
"version": "1.0.0",
"description": "Just A Playground",
"main": "./build/server.js",
"scripts": {
"build": "ts-node-dev -r tsconfig-paths/register --respawn server.ts",
"watch": "npm run build",
"dev": "npm run build",
"production": "tsc -p tsconfig.json",
"format": "prettier --write .",
"lint": "eslint . --ext=.ts",
"commit": "git-cz",
"test": "mocha --require ts-node/register \"./tests/*.spec.ts\" \"./tests/**/*.spec.ts\""
},
"author": "SmoothJS",
"license": "MIT",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"dependencies": {
"@smoothjs/cli": "^0.1.0",
"@smoothjs/config": "^0.1.0",
"@smoothjs/container": "^0.1.0",
"@smoothjs/event-emitter": "0.1.0",
"@smoothjs/express-adapter": "^0.1.0",
"@smoothjs/jwt": "^0.1.0",
"@smoothjs/session": "^0.1.0",
"@smoothjs/smooth": "^0.1.0",
"express-session": "^1.17.2",
"supertest": "^6.1.3",
"typeorm": "^0.2.32",
"typescript-ioc": "^3.2.2"
},
"devDependencies": {
"@types/express": "4.17.12",
"@types/multer": "1.4.5",
"copyfiles": "2.4.1",
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"japa": "3.1.1",
"mocha": "8.4.0",
"np": "7.5.0",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"ts-node": "10.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "4.3.2"
}
}