-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "just-dom",
"version": "0.1.0",
"description": "justDOM",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"example": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.example.js",
"example_build": "cross-env NODE_ENV=development webpack --config webpack.config.example.js",
"build": "tsc && npm run copy-sass-to-lib",
"copy-sass-to-lib": "cpx \"./src/**/*.sass\" ./build"
},
"devDependencies": {
"@types/node": "^10.14.9",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"franxx": "^1.2.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.12.0",
"open": "^6.3.0",
"sass-loader": "^7.1.0",
"simple-webpack-html-entrypoint": "^1.0.1",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"ts-loader": "^5.4.5",
"typescript": "^3.5.2",
"webpack": "^4.34.0",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1"
},
"dependencies": {
"cpx": "^1.5.0",
"file-loader": "^5.0.2",
"history": "latest",
"querystringify": "latest",
"regexparam": "latest",
"url-loader": "^3.0.0"
}
}