-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
99 lines (99 loc) · 3.54 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
{
"repository": {},
"license": "MIT",
"scripts": {
"compile-production": "npm run prune-semantic-ui-to-used-selectors && webpack --mode production --config='webpack.dll.js' && webpack --config='webpack.prod.config.js'",
"compile-test": "npm run prune-semantic-ui-to-used-selectors && webpack --config='webpack.dll.js' && NODE_ENV=test webpack --config='webpack.shared.config.js'",
"watch": "webpack --config='webpack.dll.js' && NODE_ENV=dev node webpack.devserver.js",
"prune-semantic-ui-to-used-selectors": "node_modules/.bin/postcss --config priv/static/css/semantic-ui/ priv/static/css/semantic-ui/semantic.min.css --output priv/static/css/semantic-ui/semantic-ui-purged.min.css",
"reprune-semantic-ui-on-web-changes": "nodemon -e jsx,heex --exec 'npm run prune-semantic-ui-to-used-selectors'",
"precommit": "lint-staged",
"postinstall": "bin/prepare_semantic_ui_for_consumption_by_phoenix",
"test": "mocha --exit",
"test:watch": "mocha --watch --watch-extensions jsx"
},
"lint-staged": {
"*.{js,jsx}": "eslint"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@honeybadger-io/webpack": "^1.1.4",
"autoprefixer": "^9.4.7",
"babel-loader": "^8.0.5",
"classnames": "^2.2.6",
"copy-webpack-plugin": "^4.6.0",
"core-js": "^3.6.4",
"css-loader": "^1.0",
"hard-source-webpack-plugin": "^0.13.1",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^0.5.0",
"nodemon": "^2.0.16",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"phoenix": "file:deps/phoenix",
"phoenix_html": "file:deps/phoenix_html",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"postcss-css-variables": "^0.8.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.8",
"postcss-nested": "^2.1.0",
"prop-types": "^15.5.10",
"react": "^16.8.6",
"react-dnd": "^7.0.2",
"react-dnd-html5-backend": "^7.0.2",
"react-dnd-multi-backend": "^3.1.11",
"react-dnd-touch-backend": "^0.8.1",
"react-dom": "^16.8.6",
"react-flip-move": "^3.0.4",
"react-hot-loader": "^3.1.3",
"react-meta-tags": "^0.7.4",
"react-modal": "^3.9.1",
"react-redux": "^5.1.2",
"react-transition-group": "^4.3.0",
"redux": "^3.6.0",
"redux-responsive": "^3.2.2",
"redux-thunk": "^2.3.0",
"sat": "^0.8",
"semantic-ui-offline": "^2.4.1-1",
"style-loader": "^0.13.1",
"terser-webpack-plugin": "^1.1.0",
"uuid": "^3.3.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.6",
"webpack-merge": "^4.2.1",
"write-file-webpack-plugin": "^4.2.0"
},
"devDependencies": {
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-change": "^2.1.2",
"chai-uuid": "^1.0.6",
"cryptiles": "4.1.2",
"css-hot-loader": "^1.4.3",
"deep-freeze": "^0.0.1",
"env-test": "^1.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^5.14.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^0.14.3",
"jsdom": "^9.9.1",
"jsdom-global": "^2.1.1",
"lint-staged": "^7.2.2",
"mocha": "^5.2.0",
"mock-css-modules": "^1.0.0",
"mock-local-storage": "^1.1.8",
"sinon": "^1.17.7",
"sinon-chai": "^2.14.0",
"webpack-dev-server": "^3.1.5",
"webpack-notifier": "^1.7.0"
}
}