forked from gallmarch/fl-conversion-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.1 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
{
"name": "fl-conversion-helper",
"version": "3.0.9",
"description": "Add new categories of convertible items to the inventory",
"author": "[email protected]",
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"setupFiles": [
"./.jest/MutationObserver.js"
],
"setupFilesAfterEnv": [
"./setupTests.js"
],
"testURL": "http://localhost"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"babel-preset-stage-0": "^6.24.1",
"classnames": "^2.2.5",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^3.1.0",
"eslint": "^4.12",
"extract-text-webpack-plugin": "^2.1.0",
"jquery": "^3.5",
"mutation-summary": "^0.1.1",
"node-sass": "^4.13.1",
"prop-types": "^15.5.10",
"re-reselect": "^2.1.0",
"react": "^16.5",
"react-dom": "^16.5",
"react-portal-tooltip": "^2.3.0",
"react-redux": "^5.0.6",
"react-scroll-to-component": "^1.0.2",
"redux": "^3.7.2",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"webpack": "2.2",
"zip-webpack-plugin": "^1.0.0"
},
"scripts": {
"cleanup": "rimraf dist/ && rimraf build/",
"build": "yarn cleanup && webpack",
"dist": "rimraf dist/ && NODE_ENV=production webpack -p",
"lint": "eslint 'src/**/*.@(js|jsx)'",
"start": "yarn cleanup && webpack --progress --watch",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0",
"@types/classnames": "^2.2.7",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.9.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"jest": "^24.0.0-alpha.15",
"react-test-renderer": "^16.2.0"
}
}