-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "0-views",
"version": "0.2.0",
"description": "template-for-react-js",
"repository": "https://github.com/bz888/boilderplate-react-js",
"main": "server/index.js",
"scripts": {
"client": "webpack serve --hot --config ./client/webpack.config.js",
"dev": "run-p dev:client dev:server",
"dev:client": "webpack --config ./client/webpack.config.js --watch",
"dev:server": "nodemon server",
"webpack": "webpack --config ./client/webpack.config.js",
"start": "node server",
"build": "npm run webpack",
"server": "node server",
"test": "jest --watchAll",
"lint": "eslint --ext .js,.jsx ."
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
},
"eslintConfig": {
"extends": "eda",
"ignorePatterns": [
"bundle.js"
]
},
"author": "bz888",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"babel-loader": "^8.2.2",
"eslint": "7.9.0",
"eslint-config-eda": "0.1.5",
"eslint-plugin-import": "^2.25.4",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"webpack": "^5.12.1",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"dotenv": "^11.0.0",
"express": "^4.17.1",
"framer-motion": "^6.0.0",
"googleapis": "^92.0.0",
"npm-run-all": "^4.1.5",
"react-youtube": "^7.14.0",
"superagent": "^7.0.2"
}
}