최정민

DOCS : gitignore추가

gitignore추가 및 package.json 수정

-
1 +### Node ###
2 +# Logs
3 +logs
4 +*.log
5 +npm-debug.log*
6 +yarn-debug.log*
7 +yarn-error.log*
8 +lerna-debug.log*
9 +
10 +# Diagnostic reports (https://nodejs.org/api/report.html)
11 +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12 +
13 +# Runtime data
14 +pids
15 +*.pid
16 +*.seed
17 +*.pid.lock
18 +
19 +# Directory for instrumented libs generated by jscoverage/JSCover
20 +lib-cov
21 +
22 +# Coverage directory used by tools like istanbul
23 +coverage
24 +*.lcov
25 +
26 +# nyc test coverage
27 +.nyc_output
28 +
29 +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30 +.grunt
31 +
32 +# Bower dependency directory (https://bower.io/)
33 +bower_components
34 +
35 +# node-waf configuration
36 +.lock-wscript
37 +
38 +# Compiled binary addons (https://nodejs.org/api/addons.html)
39 +build/Release
40 +
41 +# Dependency directories
42 +node_modules/
43 +jspm_packages/
44 +
45 +# TypeScript v1 declaration files
46 +typings/
47 +
48 +# TypeScript cache
49 +*.tsbuildinfo
50 +
51 +# Optional npm cache directory
52 +.npm
53 +
54 +# Optional eslint cache
55 +.eslintcache
56 +
57 +# Optional stylelint cache
58 +.stylelintcache
59 +
60 +# Microbundle cache
61 +.rpt2_cache/
62 +.rts2_cache_cjs/
63 +.rts2_cache_es/
64 +.rts2_cache_umd/
65 +
66 +# Optional REPL history
67 +.node_repl_history
68 +
69 +# Output of 'npm pack'
70 +*.tgz
71 +
72 +# Yarn Integrity file
73 +.yarn-integrity
74 +
75 +# dotenv environment variables file
76 +.env
77 +.env.test
78 +.env*.local
79 +
80 +# parcel-bundler cache (https://parceljs.org/)
81 +.cache
82 +.parcel-cache
83 +
84 +# Next.js build output
85 +.next
86 +
87 +# Nuxt.js build / generate output
88 +.nuxt
89 +dist
90 +
91 +# Storybook build outputs
92 +.out
93 +.storybook-out
94 +storybook-static
95 +
96 +# rollup.js default build output
97 +dist/
98 +
99 +# Gatsby files
100 +.cache/
101 +# Comment in the public line in if your project uses Gatsby and not Next.js
102 +# https://nextjs.org/blog/next-9-1#public-directory-support
103 +# public
104 +
105 +# vuepress build output
106 +.vuepress/dist
107 +
108 +# Serverless directories
109 +.serverless/
110 +
111 +# FuseBox cache
112 +.fusebox/
113 +
114 +# DynamoDB Local files
115 +.dynamodb/
116 +
117 +# TernJS port file
118 +.tern-port
119 +
120 +# Stores VSCode versions used for testing VSCode extensions
121 +.vscode-test
122 +
123 +# Temporary folders
124 +tmp/
125 +temp/
126 +
127 +# End of https://www.toptal.com/developers/gitignore/api/node
...\ No newline at end of file ...\ No newline at end of file
This diff is collapsed. Click to expand it.
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
8 "dependencies": { 8 "dependencies": {
9 "cookie-parser": "~1.4.4", 9 "cookie-parser": "~1.4.4",
10 "debug": "~2.6.9", 10 "debug": "~2.6.9",
11 - "express": "~4.16.1", 11 + "ejs": "^3.1.6",
12 + "express": "^4.16.4",
12 "http-errors": "~1.6.3", 13 "http-errors": "~1.6.3",
13 - "morgan": "~1.9.1", 14 + "morgan": "~1.9.1"
14 - "pug": "2.0.0-beta11"
15 } 15 }
16 } 16 }
......