-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 3.05 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
{
"name": "we-framework",
"version": "2.0.0",
"description": "Wikidata edit gadgets for using from Wikipedia projects",
"main": "src/app.js",
"browserslist": ">0.1%, safari >= 10, ie >= 11",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"build:watch": "cross-env NODE_ENV=development tsc -w -p ./src",
"check": "npm run eslint:fix && npm run build && npm run test",
"deploy": "npm run build && node ./deploy-to-wikipedia.mjs",
"eslint:check": "eslint --ignore-pattern \"!.eslintrc.js\" .eslintrc.js deploy-to-wikipedia.mjs karma.conf.js webpack.config.js src/**/*.ts* test/.eslintrc.js test/**/*.ts*",
"eslint:fix": "eslint --ignore-pattern \"!.eslintrc.js\" --fix .eslintrc.js deploy-to-wikipedia.mjs karma.conf.js webpack.config.js src/**/*.ts* test/.eslintrc.js test/**/*.ts*",
"serve": "cross-env NODE_ENV=development webpack-dev-server",
"test": "cross-env NODE_ENV=development karma start karma.conf.js --single-run",
"test:build:watch": "cross-env NODE_ENV=development tsc -w -p ./test",
"test:watch": "cross-env NODE_ENV=development karma start karma.conf.js --no-single-run",
"test:watch:chrome": "cross-env NODE_ENV=development karma start karma.conf.js --no-single-run --browsers Chrome"
},
"devDependencies": {
"@teamsupercell/typings-for-css-modules-loader": "^2.5.1",
"@types/md5": "^2.3.2",
"@types/react-autosuggest": "^10.1.5",
"@types/react-redux": "^7.1.23",
"@types/react-tagsinput": "^3.19.9",
"@vlsergey/batcher": "^1.0.0",
"@vlsergey/js-config": "^11.1.0",
"@vlsergey/react-indexdb-cache": "^0.13.0",
"autoprefixer": "^10.4.4",
"browserslist": "^4.20.2",
"core-js": "^3.21.1",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"emotion": "^11.0.0",
"eslint-webpack-plugin": "^3.1.1",
"fetch-jsonp": "^1.2.1",
"fetch-mock": "^9.11.0",
"fetch-polyfill": "^0.8.2",
"form-data": "^4.0.0",
"global-jsdom": "^8.4.0",
"https-proxy-agent": "^5.0.0",
"isbn": "git+https://github.com/AV-Forlaget/isbnjs.git#master",
"isomorphic-fetch": "^3.0.0",
"md5": "^2.3.0",
"mini-css-extract-plugin": "^2.6.0",
"node-fetch": "^3.2.3",
"node-storage-shim": "^2.0.1",
"postcss-loader": "^6.2.1",
"react-autosuggest": "^10.1.0",
"react-redux": "^7.2.8",
"react-spinners": "^0.11.0",
"react-tagsinput": "^3.19.0",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"regenerator-runtime": "^0.13.9",
"reselect": "^4.1.5",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.1.2",
"string-replace-webpack-plugin": "^0.1.3",
"style-loader": "^3.3.1",
"tslib": "^2.3.1",
"wikitext-dom": "^0.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vlsergey/WE-Framework.git"
},
"keywords": [
"wikidata",
"wikipedia"
],
"author": "Sergey Vladimirov a.k.a. vlsergey",
"license": "ISC",
"bugs": {
"url": "https://github.com/vlsergey/WE-Framework/issues"
},
"homepage": "https://github.com/vlsergey/WE-Framework#readme"
}