-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "framework-project",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "cross-env NODE_ENV=development webpack-dev-server --open",
"build": "cross-env NODE_ENV=production webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kybasas/framework.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kybasas/framework/issues"
},
"jest": {
"moduleNameMapper": {
"^@$(.*)$": "<rootDir>/src$1",
"^@core(.*)$": "<rootDir>/src/core$1"
}
},
"homepage": "https://github.com/kybasas/framework#readme",
"browserslist": [
"last 1 version",
"ie 9"
],
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-loader": "^3.0.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.4.2",
"mini-css-extract-plugin": "^0.9.0",
"sass-loader": "^8.0.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@types/jest": "^26.0.14",
"materialize-css": "^1.0.0-rc.2",
"node-sass": "^4.14.1",
"normalize.css": "^8.0.1"
}
}