-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
48 lines (48 loc) · 1.25 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": "braintree_express_example",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "run-p watch:*",
"predev": "prettier --write .",
"start": "node ./bin/www",
"test": "jest --config=jest.config.json",
"test:unit": "jest --testPathIgnorePatterns **/__tests__/**.integration.js",
"test:integration": "jest **/__tests__/**.integration.js",
"watch:server": "DEBUG=\"braintree_example:*\" nodemon bin/www"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-braintree": "^5.0.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"jest-runner-eslint": "^1.1.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"supertest": "^6.3.3"
},
"dependencies": {
"body-parser": "^1.20.1",
"braintree": "^3.15.0",
"connect-flash": "~0.1.1",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"http-errors": "^2.0.0",
"less-middleware": "^3.1.0",
"morgan": "^1.10.0",
"morgan-debug": "^2.0.0",
"pug": "^3.0.2",
"serve-favicon": "^2.5.0"
},
"engines": {
"node": ">=14"
},
"browserslist": [
"last 2 version",
"> 2%"
]
}