-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.55 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "simple-nodejs-shop",
"version": "1.0.0",
"browserslist": [
"last 3 versions",
"not < 0.01%",
"not ie <= 10"
],
"description": "Basic e-commerce shop based on NodeJS",
"main": "backend/bin/start.js",
"scripts": {
"frontend-build": "NODE_ENV='prod' gulp build",
"frontend-build-dev": "gulp build",
"frontend-dev": "EABLE_WP_WATCH='true' gulp dev",
"check-lint": "eslint -c .eslintrc . --ext .js,.jsx,.ts,.tsx",
"check-lint:fix": "eslint -c .eslintrc --fix . --ext .js,.jsx,.ts,.tsx",
"backend-start": "node backend/bin/start.js",
"backend-start-dev": "DEBUG=* node backend/bin/start.js",
"backend-dev": "DEBUG=* nodemon -e twig,js --watch backend backend/bin/start.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Przemyslaw Wrzeszcz",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/debug": "^4.1.5",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"@typescript-eslint/typescript-estree": "^2.19.2",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"gulp": "^4.0.2",
"gulp-sass": "^4.0.2",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"style-loader": "^1.1.3",
"typescript": "^3.7.5",
"webpack": "^4.41.6"
},
"dependencies": {
"axios": "^0.19.2",
"cash-dom": "^6.0.2",
"cookie-parser": "^1.4.4",
"core-js": "^3.6.4",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"http-errors": "^1.7.3",
"http-status-codes": "^1.4.0",
"locutus": "^2.0.11",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"morgan": "^1.9.1",
"nodemailer": "^6.4.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sequelize": "^5.21.4",
"session-file-store": "^1.4.0",
"sqlite3": "^4.1.1",
"sweetalert2": "^9.7.2",
"twing": "^4.0.2",
"validator": "^12.2.0"
}
}