-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.84 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.84 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "test-node",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "nodemon index.ts",
"test": "jest --watchAll"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@date-io/date-fns": "^2.16.0",
"@date-io/jalaali": "^2.16.1",
"@date-io/moment": "^2.16.1",
"@turf/turf": "^7.2.0",
"@types/immutable": "^3.8.7",
"@types/jest": "^28.1.6",
"@types/karma": "^6.3.3",
"@types/karma-coverage": "^2.0.1",
"@types/karma-mocha": "^1.3.1",
"@types/karma-sinon-chai": "^2.0.2",
"@types/karma-spec-reporter": "^0.0.3",
"@types/karma-webpack": "^2.0.11",
"@types/lodash": "^4.14.175",
"@types/mocha": "^9.1.1",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^16.7.1",
"@types/nodemon": "^1.19.1",
"@types/ramda": "^0.27.50",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@zip.js/zip.js": "^2.7.43",
"axios": "^1.4.0",
"babel-jest": "^28.1.3",
"babel-preset-react-app": "^10.0.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.17.1",
"fluent-logger": "^3.4.1",
"immutable": "^4.3.4",
"jest": "^28.1.3",
"karma": "^6.4.0",
"karma-coverage": "^2.2.0",
"karma-mocha": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.5.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "^0.0.34",
"karma-webpack": "^5.0.0",
"lodash": "^4.17.21",
"mobx": "^6.3.10",
"mocha": "^10.0.0",
"moment": "^2.29.4",
"moment-jalaali": "^0.10.0",
"moment-timezone": "^0.5.43",
"monet": "^0.9.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ramda": "^0.27.1",
"rxjs": "^7.8.1",
"shapefile": "^0.6.6",
"shapefile.js": "^1.1.4",
"shpjs": "^5.0.0",
"string-ts": "^2.2.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.2.1",
"ts-utls": "^1.1.4",
"typescript": "^4.3.5",
"ws": "^8.8.1"
},
"babel": {
"presets": [
"react-app"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
]
},
"devDependencies": {
"@types/shapefile": "^0.6.4",
"@types/shpjs": "^3.4.7"
}
}