forked from inferno-framework/inferno-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.98 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "inferno-web-app",
"version": "0.1.0",
"private": true,
"proxy": "http://127.0.0.1:3000",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.11.2",
"@testing-library/user-event": "^12.1.10",
"@types/material-ui": "^0.21.8",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "webpack serve --config ./webpack.config.js --mode=development",
"build": "webpack --config ./webpack.config.js --mode=production",
"puma": "bundle exec puma",
"redis": "docker run -p 6379:6379 redis",
"sidekiq": "bundle exec sidekiq -r ./worker.rb",
"dev": "concurrently --kill-others \"npm run start\" \"npm run puma\" \"npm run redis\" \"npm run sidekiq\"",
"test": "jest ./client/src/**/*",
"eject": "react-scripts eject",
"lint": "tsc --noEmit && eslint './client/src/**/*.{ts,tsx}'",
"lint:fix": "tsc --noEmit && eslint './client/src/**/*.{ts,tsx}' --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.10",
"@material-ui/lab": "^4.0.0-alpha.57",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/react-router-dom": "^5.1.7",
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-loader": "^8.2.2",
"concurrently": "^6.2.0",
"css-loader": "^5.2.6",
"eslint": "^7.23.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"react-markdown": "^6.0.2",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-manifest-plugin": "^3.1.0",
"webpack-nano": "^1.1.1"
},
"main": "webpack.config.js",
"directories": {
"doc": "docs",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "[email protected]:inferno/inferno-2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"jest": {
"moduleDirectories": [
"node_modules",
"client/src"
],
"setupFilesAfterEnv": [
"./client/src/setupTests.ts"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif)$": "<rootDir>/client/src/assetsTransformer.js"
}
}
}