-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "syndicate-user",
"version": "1.0.2",
"author": "Braden Nicholson",
"license": "MPL-2.0",
"scripts": {
"start": "node -r esm src/index.js ",
"test": "jest",
"transpile": "babel ./src --out-dir dist-server",
"clean": "rimraf dist-server",
"build": "npm-run-all clean transpile"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
"src/*",
"public/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"dependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.1",
"@types/supertest": "^2.0.10",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"jsdoc": "^3.6.5",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.5",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"axios": "^0.20.0",
"faker": "^5.1.0",
"jest": "^26.4.2",
"supertest": "^4.0.2"
}
}