-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"name": "class-registration-api",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@types/node": "^8.0.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"cross-env": "^7.0.0",
"supertest": "^4.0.2",
"ts-node": "3.3.0",
"typescript": "3.3.3333"
},
"dependencies": {
"@types/jest": "^24.0.18",
"body-parser": "^1.18.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"jest": "^24.9.0",
"mysql": "^2.14.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^24.0.2",
"typeorm": "0.2.22"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.(js|ts|tsx)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"vue"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"moduleNameMapper": {
"node-formatter": "<rootDir>/node_modules/node-formatter"
}
}
}