-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "ocapi",
"version": "1.0.0",
"description": "SFCC OCAPI",
"main": "index.js",
"private": true,
"scripts": {
"dev": "nodemon ./src/index.js",
"start": "node ./src/index.js",
"lint": "eslint --ignore-path .gitignore . --ext .js",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"OCAPI",
"SFCC"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^28.1.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"jest": "^26.6.3",
"nodemon": "^2.0.16",
"prettier": "^2.2.1"
},
"browserslist": [
"defaults",
"not IE 11"
],
"dependencies": {
"axios": "^0.22.0",
"crypto-js": "^4.1.1",
"express": "^4.18.1"
}
}