-
Notifications
You must be signed in to change notification settings - Fork 487
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.05 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.05 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
{
"name": "todolist",
"version": "2.0.0",
"private": true,
"main": "index.js",
"scripts": {
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "npm run lint -- --fix",
"start-web": "npm install && npm run gulp-web",
"gulp-web": "cross-env NODE_ENV=development node node_modules/gulp/bin/gulp run --platform=web",
"start-windows": "npm install && npm run gulp-windows",
"gulp-windows": "cross-env NODE_ENV=development node node_modules/gulp/bin/gulp run --platform=windows",
"start-ios": "npm install && npm run gulp-ios",
"gulp-ios": "cross-env NODE_ENV=development node node_modules/gulp/bin/gulp run --platform=ios",
"start-android": "npm install && npm run gulp-android",
"gulp-android": "cross-env NODE_ENV=development node node_modules/gulp/bin/gulp run --platform=android",
"start": "node node_modules/react-native/local-cli/cli.js start"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/runtime": "^7.10.4",
"@react-native-community/cli": "^9.1.3",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/webpack": "^4.41.18",
"async": "^3.2.2",
"babel-loader": "^8.3.0",
"babel-plugin-lodash": "^3.3.4",
"cross-env": "^7.0.2",
"del": "^5.1.0",
"event-stream": "4.0.1",
"finalhandler": "^1.1.2",
"fs-extra": "^9.0.1",
"gulp": "^4.0.2",
"gulp-cached": "^1.1.1",
"gulp-eol": "^0.2.0",
"gulp-jshint": "^2.1.0",
"gulp-rename": "^2.0.0",
"gulp-replace-with-sourcemaps": "^0.7.1",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.1",
"jshint": "^2.11.1",
"jshint-stylish": "^2.2.1",
"metro-react-native-babel-preset": "^0.60.0",
"node-notifier": "^7.0.1",
"path": "^0.12.7",
"path-posix": "^1.0.0",
"pretty-hrtime": "^1.0.3",
"run-sequence": "^2.2.1",
"serve-static": "^1.14.1",
"ts-loader": "^9.4.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"yargs": "^15.4.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^3.5.0",
"eslint": "^7.4.0",
"eslint-config-skype": "^1.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.20.3",
"gulp-eslint": "^6.0.0",
"nosqlprovider": "^0.6.23",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-native": "0.70.2",
"react-native-sqlite-storage": "^5.0.0",
"react-native-windows": "^0.62.0",
"reactxp": "^2.0.0",
"reactxp-navigation": "^2.0.0",
"reactxp-virtuallistview": "^2.1.0",
"resub": "^2.3.0",
"simplerestclients": "^1.0.0",
"synctasks": "^0.3.3"
}
}