-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
{
"name": "superhero-avatars",
"version": "1.1.0",
"author": "Milen Radkov <[email protected]>",
"private": true,
"scripts": {
"start": "npm run prod",
"build": "npm-run-all clean transpile",
"server": "node ./dist-server/bin/www",
"dev": "cross-env NODE_ENV=development npm-run-all build server",
"watch:dev": "nodemon",
"prod": "cross-env NODE_ENV=production npm-run-all build server",
"transpile": "babel ./server --out-dir dist-server --copy-files",
"clean": "rimraf dist-server",
"test": "jest"
},
"nodemonConfig": {
"exec": "npm run dev",
"watch": [
"server/*",
"public/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@dicebear/avatars": "^4.2.5",
"@dicebear/avatars-avataaars-sprites": "^4.2.5",
"btoa": "^1.2.1",
"buffer": "^5.6.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"jdenticon": "^2.2.0",
"morgan": "~1.9.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"stream": "0.0.2"
},
"devDependencies": {
"cross-env": "^7.0.2",
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5"
}
}