-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.89 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
{
"name": "swot-application",
"version": "1.0.0",
"description": "Application for SWOT analysis",
"main": "src/index.js",
"scripts": {
"start": "nodemon --watch webpack.config.babel.js --exec \"cross-env NODE_ENV=development webpack-dev-server --inline\"",
"build-dev": "cross-env NODE_ENV=development webpack",
"build": "cross-env NODE_ENV=production webpack --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "h_type <[email protected]>",
"license": "ISC",
"dependencies": {
"file-saver": "^1.3.3",
"normalize.css": "^8.0.0",
"preact": "^8.2.7",
"preact-compat": "^3.18.0",
"react-smooth-dnd": "^0.5.2",
"stylelint-config-css-modules": "^1.3.0"
},
"devDependencies": {
"autoprefixer": "^8.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.2",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.1",
"node-sass": "^4.9.0",
"nodemon": "^1.17.3",
"postcss-loader": "^2.1.4",
"prettier": "^1.12.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"stylelint": "^9.2.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^2.5.0",
"webpack": "^4.14.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
}
}