-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.07 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
{
"name": "fe-build-tools-workshop",
"version": "1.0.0",
"description": "Front-end build tools workshop repository",
"license": "MIT",
"author": "Taavi Kübar",
"main": "app.js",
"dependencies": {
"lodash": "^4.17.15",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"typescript": "^3.1.3"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.4.18",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"eslint": "^5.7.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.4",
"prop-types": "^15.6.2",
"sass-lint": "^1.12.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.2.2",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"url-loader": "^1.1.2",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"scripts": {
"dev": "webpack",
"prod": "webpack --config webpack.config.prod.js",
"hot": "webpack-dev-server",
"server": "http-server",
"gulp": "gulp",
"prod-server": "http-server build",
"lint": "npm run eslint && npm run tslint && npm run sasslint",
"eslint": "eslint ./lib/**/*.{js,jsx}",
"tslint": "tslint ./lib/**/*.{ts,tsx}",
"sasslint": "sass-lint --config .sasslintrc --no-exit --verbose"
}
}