-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "spa-exercise",
"version": "1.0.0",
"description": "This is a simple CRUD app to manage a list of images",
"main": "server.js",
"scripts": {
"dev-web": "parcel watch --no-cache ./web/index.html",
"build-web": "parcel build --no-cache ./web/index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "precise-commits",
"prettier-all": "prettier --write *.{js,json,css,md}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiagox/spa-exercise.git"
},
"keywords": [
"spa",
"vanillajs",
"express",
"api"
],
"author": "Santiago Rojo <tiagox@gmail.com>",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/tiagox/spa-exercise/issues"
},
"homepage": "https://github.com/tiagox/spa-exercise#readme",
"dependencies": {
"@babel/runtime": "^7.10.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"husky": "^4.2.5",
"md5": "^2.2.1",
"mongoose": "^5.9.26",
"multer": "^1.4.2",
"mustache": "^4.0.1",
"node-sass": "^4.14.1",
"parcel-bundler": "^1.12.4",
"precise-commits": "^1.0.2",
"sortablejs": "^1.10.2"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.10.5",
"prettier": "^2.0.5"
}
}