-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 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
{
"name": "site_starter",
"version": "1.0.0",
"description": "A simple site starter using webpack, typescript, sass, node and uikit",
"private": true,
"scripts": {
"test": "jest",
"build": "NODE_ENV=production webpack -p --config webpack.prod.js",
"start": "webpack-dev-server --config webpack.dev.js",
"start:dev": "webpack-dashboard -- webpack-dev-server --config webpack.dev.js",
"dev": "webpack-dashboard",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "Luke Captain",
"license": "ISC",
"devDependencies": {
"@types/copy-webpack-plugin": "^4.4.2",
"@types/html-webpack-plugin": "^3.2.0",
"@types/jest": "^23.3.9",
"@types/lodash": "^4.14.119",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"node-sass": "^4.11.0",
"open-browser-webpack-plugin": "0.0.5",
"purgecss-webpack-plugin": "^1.4.0",
"sass-loader": "^7.1.0",
"speed-measure-webpack-plugin": "^1.2.5",
"style-loader": "^0.23.1",
"ts-jest": "^23.10.4",
"ts-loader": "^5.3.3",
"typescript": "^3.2.2",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.4",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-dashboard": "^2.0.0",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"lodash": "^4.17.11"
},
"jest": {
"transform": {
".(ts|tsx)$": "ts-jest"
},
"testRegex": "/test/.*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"moduleNameMapper": {
"app/(.*)": "<rootDir>/src/$1"
}
}
}