-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
55
56
57
58
59
60
61
{
"name": "shoppingcart",
"version": "0.1.0",
"private": true,
"scripts": {
"babel-node": "babel-node --presets=env",
"start": "node ./server",
"start:dev": "nodemon --watch server/ server/",
"start:local": "NODE_TLS_REJECT_UNAUTHORIZED=0 nodemon --watch server/ server/",
"export:next": "next export src",
"build:next": "next build src",
"analyze": "ANALYZE=true yarn build:next",
"lint": "eslint src/**/*.js",
"lint:css": "stylelint src/**/*.js"
},
"lint-staged": {
"./**/*.{js,jsx}": [
"eslint"
]
},
"dependencies": {
"@babel/preset-env": "^7.9.6",
"@types/react-bootstrap": "^1.0.1",
"@webcomponents/webcomponentsjs": "^2.4.3",
"axios": "^0.19.2",
"axios-hooks": "^1.10.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.10.7",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"eslint": "^6.8.0",
"express": "^4.17.1",
"isomorphic-unfetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"logger": "^0.0.1",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"next": "9.3.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "16.13.1",
"styled-components": "^5.1.0",
"stylelint": "^13.3.3"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"fs-readdir-recursive": "^1.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"nodemon": "^2.0.3",
"output-file-sync": "^2.0.1",
"typescript": "^3.8.3"
}
}