-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.25 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.25 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "prototype-personal",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"dependencies": {
"@babel/register": "^7.12.10",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"express": "^4.17.1",
"knex": "^0.21.13",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"sqlite3": "^5.0.0",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"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.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "7.9.0",
"eslint-config-eda": "0.1.4",
"interactjs": "^1.10.11",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"superagent": "^6.1.0",
"webpack": "^5.10.3",
"webpack-cli": "^4.2.0"
},
"scripts": {
"start": "run-p webpack server",
"dev": "run-p client server",
"client": "webpack --watch --config client/webpack.config.js",
"server": "nodemon --watch server",
"webpack": "webpack --config client/webpack.config.js",
"lint": "eslint --ext .js,.jsx .",
"knex": "knex --knexfile server/db/knexfile.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keinskyrocket/prototype-personal.git"
},
"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": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/keinskyrocket/prototype-personal/issues"
},
"homepage": "https://github.com/keinskyrocket/prototype-personal#readme"
}