-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.28 KB
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
{
"name": "mini-react-example",
"author": "oct16",
"version": "1.0.0",
"description": "mini react example",
"private": true,
"dependencies": {},
"devDependencies": {
"@oct16/code-formatter": "^1.0.9",
"@types/chai": "^4.2.4",
"@types/html-webpack-plugin": "^3.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.0",
"autoprefixer": "^9.6.4",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"mocha": "^6.2.1",
"mocha-webpack": "^2.0.0-beta.0",
"postcss-loader": "^3.0.0",
"preload-webpack-plugin": "^3.0.0-beta.4",
"prettier": "^1.18.2",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"react": "^16.10.1",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"terser-webpack-plugin": "^2.2.1",
"ts-loader": "^6.0.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5",
"url-loader": "^2.2.0",
"webpack": "^4.41.0",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.2"
},
"scripts": {
"dev": "webpack-dev-server --config builder/webpack.config.dev.js",
"start": "npm run dev",
"build": "NODE_ENV='production' webpack --progress --config builder/webpack.config.prod.js",
"test": "mocha-webpack --webpack-config builder/webpack.config.test.js src/test/**/*.test.ts",
"analyze": "webpack --progress --config builder/webpack.config.analyzer.js && cd webpack-bundle-analyzer dist/stats.json",
"formatter": "code-formatter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oct16/mini-react-example.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/oct16/mini-react-example/issues"
},
"homepage": "https://github.com/oct16/mini-react-example#readme"
}