-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·65 lines (65 loc) · 2.22 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
{
"private": false,
"name": "TypeScript-boilerlate",
"version": "1.0.0",
"description": "",
"homepage": "",
"author": "",
"scripts": {
"dev": "webpack-dev-server --output-public-path=/static/",
"prod": "cross-env NODE_ENV=production webpack-dev-server --env.prod=true",
"build": "cross-env NODE_ENV=production webpack --env.prod=true",
"lint": "yarn run lint-js && yarn run lint-css",
"lint-js": "eslint --ext .js devServer.js webpack.config.dev.js webpack.config.prod.js ./src",
"lint-css": "stylelint './src/**/*.scss' --syntax scss --fix; exit 0",
"lintfix": "yarn run lintfix-js && yarn run lintfix-css",
"lintfix-js": "eslint --ext .js ./src --fix",
"lintfix-css": "stylefmt --config ./.stylelintrc --recursive ./src/**/*.scss"
},
"dependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.10.4",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-stage-0": "^6.5.0",
"babel-relay-plugin-loader": "^0.10.0",
"compression-webpack-plugin": "^0.3.2",
"cross-env": "3.2.4",
"css-loader": "^0.27.3",
"eslint": "^3.10.2",
"eslint-config-standard": "^7.1.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^0.10.1",
"happypack": "^3.0.2",
"img-loader": "^2.0.0",
"imports-loader": "^0.7.1",
"node-sass": "^4.5.1",
"outdated-browser-pro": "^1.0.0",
"postcss-loader": "^1.3.3",
"rimraf": "^2.5.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.0",
"stylefmt": "^5.1.1",
"stylelint": "^7.9.0",
"stylelint-scss": "^1.4.1",
"stylelint-webpack-plugin": "^0.7.0",
"systemjs": "^0.19.47",
"ts-loader": "^2.0.3",
"tslint": "^4.5.1",
"tslint-loader": "^3.4.3",
"typescript": "next",
"url-loader": "^0.5.7",
"webpack": "^2.3.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^2.3.0",
"webpack-hot-middleware": "^2.13.2"
}
}