-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.15 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.15 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
{
"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",
"private": true,
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"axios": "^1.6.0",
"cors": "^2.8.5",
"express": "^4.18.0",
"express-rate-limit": "^7.1.0",
"http-status-codes": "^2.3.0",
"react-scripts": "^5.0.1",
"styled-components": "^6.1.0"
},
"scripts": {
"start": "npm run servers",
"test": "jest --watchAll",
"globals": "npm i -g cross-env",
"servers": "cross-env NODE_ENV=development&&gulp watch",
"dev-server": "cross-env NODE_ENV=development&&gulp dev_server",
"node-server": "cross-env NODE_ENV=development&&nodemon server/app.js",
"prod": "cross-env NODE_ENV=production&&gulp prod",
"image-min": "cross-env NODE_ENV=development&&gulp images",
"sass": "cross-env NODE_ENV=development&&gulp sass",
"third-party": "cross-env NODE_ENV=development&&gulp vendor"
},
"keywords": [
"Template"
],
"author": "ELC Online",
"license": "All rights reserved ELC Online",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-transform-class-properties": "^7.23.0",
"@babel/plugin-transform-object-rest-spread": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.23.0",
"babel-loader": "^9.1.0",
"browser-sync": "^3.0.0",
"cross-env": "^7.0.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.0",
"gulp-babel": "^8.0.0",
"gulp-git": "^2.5.0",
"gulp-imagemin": "^7.1.0",
"gulp-mustache": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"sass": "^1.69.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"jasmine": "^5.1.0",
"jasmine-node": "^3.0.0",
"jasmine-reporter-console": "^1.1.0",
"jest": "^29.7.0",
"nodemon": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native-dotenv": "^3.4.0",
"uglify-js": "^3.17.0",
"webpack": "^5.89.0",
"webpack-stream": "^7.0.0"
}
}