-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "braintree_express_example",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "run-p watch:*",
"start": "node ./bin/www",
"test": "jest --config=jest.config.json",
"test:unit": "jest --testPathIgnorePatterns **/__tests__/**.integration.js",
"watch:server": "DEBUG=\"braintree_example:*\" nodemon bin/www"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-braintree": "^4.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"jest-runner-eslint": "^0.7.5",
"nodemon": "^1.19.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"braintree": "^2.21.0",
"connect-flash": "~0.1.1",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"http-errors": "^1.7.3",
"less-middleware": "^3.1.0",
"morgan": "^1.9.1",
"morgan-debug": "^2.0.0",
"pug": "^2.0.4",
"serve-favicon": "^2.5.0"
},
"engines": {
"node": ">=12"
},
"browserslist": [
"last 2 version",
"> 2%",
"ie 11"
]
}