-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·69 lines (69 loc) · 2.19 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
62
63
64
65
66
67
68
69
{
"name": "web-starter-template",
"version": "0.1.0",
"description": "The Web Starter Template (WST) is a starting point for creating Front End Web applications.",
"main": "app.js",
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"@babel/eslint-parser": "^7.22.15",
"babel-preset-es2015": "^6.24.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"prop-types": "^15.8.1",
"react-transition-group": "^4.4.5"
},
"scripts": {
"globals": "npm i -g cross-env",
"servers": "set NODE_ENV=development&&gulp watch",
"dev-server": "cross-env set NODE_ENV=development&&gulp dev_server",
"node-server": "cross-env set NODE_ENV=development&&nodemon server/app.js",
"prod": "cross-env set NODE_ENV=production&&gulp prod",
"image-min": "cross-env set NODE_ENV=development&&gulp images",
"sass": "cross-env set NODE_ENV=development&&gulp sass",
"third-party": "cross-env set NODE_ENV=development&&gulp vendor",
"lint:app": "eslint app/",
"lint:server": "eslint server/",
"lint": "npm run lint:app && npm run lint:server"
},
"keywords": [
"Template"
],
"author": "ELC Online",
"license": "All rights reserved ELC Online",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.0.0-beta.36",
"babel-loader": "^9.1.2",
"browser-sync": "^2.26.3",
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "4.0.0",
"gulp-babel": "^8.0.0",
"gulp-git": "^2.5.0",
"gulp-imagemin": "^7.1.0",
"gulp-mustache": "3.0.0",
"gulp-rename": "1.2.2",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "2.6.1",
"gulp-uglify": "^3.0.2",
"nodemon": "^1.14.7",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native-dotenv": "^2.5.5",
"sass": "^1.57.1",
"uglify-js": "3.2.2",
"webpack": "^5.75.0",
"webpack-stream": "^7"
}
}