-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.53 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.53 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
{
"name": "nodejs-quest",
"version": "1.0.0",
"description": "> NodeJS 전형의 점수는 **면접(70%), 과제(30%)** 입니다. 과제의 미완성이 합격에 큰 영향을 주지 않습니다.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jest": "^25.1.0",
"multer": "^1.4.2",
"supertest": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-jest": "^25.1.0",
"nodemon": "^2.0.2"
},
"scripts": {
"test": "jest ./test/features/index.spec.js",
"start": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geusan/prography-6th-nodejs-quest.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/geusan/prography-6th-nodejs-quest/issues"
},
"homepage": "https://github.com/geusan/prography-6th-nodejs-quest#readme",
"nodemonConfig": {
"watch": [
"src/*"
],
"exec": "babel-node src"
},
"babel": {
"presets": [
[
"@babel/env"
]
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"setupFiles": [
"./test/setup.js"
]
}
}