-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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
{
"name": "csvelectron",
"version": "0.1.0",
"private": true,
"main": "./build/server/index",
"dependencies": {
"@codemirror/lang-javascript": "^0.19.4",
"@codemirror/lang-json": "^0.19.1",
"@types/analytics-node": "^3.1.7",
"@types/express": "^4.17.13",
"@types/node": "^17.0.16",
"@types/papaparse": "^5.3.2",
"@types/react-dom": "^17.0.11",
"@types/uuid": "^8.3.4",
"@uiw/react-codemirror": "^4.3.2",
"analytics-node": "^6.0.0",
"autoprefixer": "10.0.2",
"copy-webpack-plugin": "^10.2.4",
"evergreen-ui": "^6.6.3",
"express": "^4.17.3",
"html-webpack-plugin": "^5.5.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"papaparse": "^5.3.1",
"react": "^17.0.2",
"react-csv-to-table": "^0.0.4",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"ts-loader": "^9.2.6",
"uuid": "^8.3.2",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.0",
"mocha": "^9.1.3",
"ts-loader": "^9.2.6",
"ts-mocha": "^9.0.2",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3"
},
"scripts": {
"server": "tsc --project tsconfig.server.json && node ./build/server",
"client": "webpack-dev-server",
"build": "webpack && tsc --project tsconfig.server.json",
"test": "ts-mocha -p tsconfig.json 'client/**/*.test.ts' --inspect",
"start": "node ./build/server"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}