-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
131 lines (131 loc) · 3.87 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "keys-translations-manager",
"version": "1.6.0",
"private": true,
"description": "A web application for locale's keys and translations management.",
"keywords": [
"i18n",
"internationalization",
"lang",
"language",
"l10n",
"locale",
"localization",
"multilingual",
"translation",
"MERN"
],
"author": "chejen",
"scripts": {
"lint": "eslint --ext .js,.jsx src/**",
"dev": "cross-env NODE_ENV=development nodemon --exec babel-node -- ./Server.js",
"start": "cross-env NODE_ENV=production babel-node ./Server.js",
"build": "npm run build:css && npm run build:js",
"build:css": "lessc less/app.less public/css/app.css && cleancss public/css/app.css -o public/css/app.css",
"build:js": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"test": "cross-env NODE_ENV=test mocha -R spec --require @babel/register --require ./tests/testHelper.js tests/**/*.js",
"test:watch": "npm test -- --watch",
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha tests/**/*.js",
"codecov": "cat ./coverage/lcov.info | codecov"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "https://github.com/chejen/keys-translations-manager"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"archiver": "^5.0.2",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^3.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"d3-hierarchy": "^1.1.9",
"d3-selection": "^1.4.1",
"d3-zoom": "^1.8.3",
"ejs": "^3.1.5",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"history": "^4.10.1",
"isomorphic-fetch": "^3.0.0",
"keys-translations-manager-core": "^1.6.0",
"lodash": "^4.17.20",
"mongoose": "^5.10.7",
"multiparty": "^4.2.2",
"nodemon": "^2.0.4",
"prop-types": "~15.7.2",
"react": "~16.13.1",
"react-bootstrap": "~0.32.4",
"react-dom": "~16.13.1",
"react-dropzone": "^10.2.1",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-table": "^6.10.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"serve-favicon": "^2.5.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/register": "^7.11.5",
"@hot-loader/react-dom": "^16.11.0",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"clean-css-cli": "^4.3.0",
"codecov": "^3.7.2",
"css-loader": "^4.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.10.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-i18n": "^2.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.2",
"eventsource-polyfill": "~0.9.6",
"husky": "^4.3.0",
"jsdom": "^16.4.0",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"lint-staged": "^10.4.0",
"mocha": "^8.1.3",
"nock": "^13.0.4",
"nyc": "^15.1.0",
"react-test-renderer": "~16.13.0",
"redux-mock-store": "^1.5.4",
"rename": "^1.0.4",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"style-loader": "1.2.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-strip": "~0.1.0"
},
"license": "MIT"
}