-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.62 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.62 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
{
"name": "react-workshop-basic",
"version": "1.0.0",
"author": "Emre Keskin <emrekesk.in>",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -c -w",
"start": "cross-env NODE_ENV=production rollup -c && serve public"
},
"dependencies": {
"bootstrap": "^4.4.1",
"react": "^16.11.0",
"react-bootstrap": "^1.0.0-beta.16",
"react-dom": "^16.11.0",
"react-hook-form": "^3.29.1",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@babel/runtime-corejs2": "^7.7.2",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^6.0.0",
"@rollup/plugin-replace": "^2.2.1",
"@types/node": "^12.12.5",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@types/react-router-dom": "^5.1.3",
"babel-plugin-react-require": "^3.1.1",
"cross-env": "^6.0.3",
"less": "^3.10.3",
"rollup": "^1.26.3",
"rollup-plugin-auto-named-exports": "^1.0.0-beta.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.1.2",
"typescript": "^3.7.2"
}
}