forked from kentcdodds/testing-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.39 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
{
"name": "server",
"version": "1.0.0",
"private": true,
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node .",
"dev": "node .",
"build": "babel --ignore __tests__,__mocks__ --out-dir dist src",
"test": "cd .. && npm run test:server --silent",
"now-build": "echo \"build happens before deploy\"",
"now-start": "node ."
},
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"cross-env": "^5.1.3",
"detect-port": "^1.2.2",
"express": "^4.16.2",
"express-async-errors": "^2.1.0",
"express-jwt": "^5.3.0",
"jsonwebtoken": "^8.2.1",
"lodash": "^4.17.4",
"loglevel": "^1.6.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"til-shared": "file:../shared"
},
"now": {
"name": "til",
"alias": "til.now.sh"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"transform-object-rest-spread"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"nodemon": "^1.17.3"
}
}