-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.95 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.95 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
{
"name": "js30",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production --env production",
"dev-server:dev": "webpack-dev-server --env development",
"dev-server:prod": "webpack-dev-server --env production",
"test": " mocha \"./{,!(node_modules)/**/}*asyncAssertions.test.js\" ",
"test-watch": "nodemon --exec \"npm test\"",
"open": "opn http://localhost:3000 && node \"Lesson 30/Opn/opn-cli/server.js\"",
"electron": "electron \"Lesson 15/electron.js\"",
"clean": "rimraf \"Lesson 30/Rimraf/toDelete\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/MirzaLeka/Javascript30.git"
},
"author": "Mirza Leka",
"license": "ISC",
"bugs": {
"url": "https://github.com/MirzaLeka/Javascript30/issues"
},
"homepage": "https://github.com/MirzaLeka/Javascript30#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"css-loader": "^1.0.1",
"ejs": "^3.1.7",
"electron": "^15.5.5",
"express": "^4.16.4",
"extract-loader": "^3.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"jimp": "^0.6.4",
"jquery": "^3.4.1",
"lodash": "^4.17.21",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"mathjs": "^7.5.1",
"mini-css-extract-plugin": "^0.4.4",
"moment": "^2.29.2",
"mongodb": "^3.1.9",
"mongoose": "^5.3.12",
"multer": "^1.4.1",
"node-sass": "^7.0.0",
"normalize.css": "^8.0.1",
"opn": "^5.4.0",
"parcel-bundler": "^1.12.3",
"randomstring": "^1.1.5",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^4.2.2",
"redis": "^3.0.2",
"rxjs": "^6.5.3",
"sass": "^1.15.1",
"sass-loader": "^7.1.0",
"socket.io": "^2.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-dev-server": "^3.1.14"
},
"devDependencies": {
"axios": "^0.21.2",
"chalk": "^2.4.1",
"clean-webpack-plugin": "^1.0.0",
"crypto-js": "^3.1.9-1",
"download": "^7.1.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"expect": "^1.20.2",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"live-server": "^1.2.1",
"mocha": "^5.2.0",
"node-fetch": "^2.6.7",
"nodemon": "^1.18.6",
"opn-cli": "^4.0.0",
"rimraf": "^2.6.2",
"typed.js": "^2.0.10",
"validator": "^13.7.0"
}
}