forked from sfeir-open-source/sfeir-school-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.54 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
70
71
72
73
74
75
76
{
"name": "react-people",
"version": "2.0.0-beta",
"description": "SfeirSchool React v2019",
"author": "Wolfgang Goedel <[email protected]>",
"contributors": [
"Rudy Weber <[email protected]>",
"Romain Torond <[email protected]>",
"Frédéric Sarron <[email protected]>"
],
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"start": "run-p watch:exos api serve",
"watch:exos": "parcel src/ex*/index.html src/solution/index.html",
"api": "json-server --quiet --delay=500 ./data/peopleServed.json",
"serve": "live-server --quiet --watch=\"demo01/,demo02/,demo03/\" --mount=/modules:./node_modules --no-browser ./src",
"ts": "tsc --noEmit --watch",
"start:hooks": "run-p watch:hooks api:hooks",
"watch:hooks": "parcel src/expert/hooks/demo*/index.html src/expert/hooks/ex*/index.html src/expert/hooks/solution/index.html",
"api:hooks": "node src/expert/hooks/server/index.js",
"eslint:hooks": "eslint 'src/expert/hooks/**/*.(ts|tsx)'"
},
"alias": {
"process": false
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/standalone": "^7.11.6",
"@types/react": "^16.9.50",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/redux-api-middleware": "^3.2.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"formik": "^2.1.7",
"json-server": "^0.17.1",
"less": "^3.12.2",
"live-server": "^1.1.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-query": "^3.39.3",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-api-middleware": "^3.2.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"rmwc": "^5.7.2",
"typescript": "^4.0.3",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@parcel/transformer-less": "^2.3.1",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.21",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"msw": "^0.27.1",
"parcel": "^2.3.1",
"ts-jest": "^26.5.4"
}
}