-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"name": "react-router",
"version": "1.0.0",
"description": "React Router Example",
"main": "dist/application.js",
"scripts": {
"prestart": "webpack --mode=development && npm run build-css && npm run order-css",
"start": "webpack-dev-server --hot",
"build-css": "node-sass --include-path scss src/application.scss dist/application.css",
"order-css": "csscomb src && csscomb dist",
"watch-css": "nodemon -e scss -x npm run build-css",
"lint": "./node_modules/.bin/eslint --ext js,jsx src",
"test": "jest"
},
"author": "Stephane Moroso",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.2.5",
"csscomb": "^4.3.0",
"eslint": "^8.16.0",
"eslint-plugin-jest": "^26.4.5",
"eslint-plugin-react": "^7.30.0",
"jest": "^28.1.0",
"node-sass": "^7.0.1",
"nodemon": "^2.0.16",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router-dom": "^6.3.0",
"react-test-renderer": "^18.1.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}