-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.89 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.89 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
{
"name": "npwriter-dev-kit",
"version": "1.5.0",
"description": "Development kit for developing plugins for the Writer",
"main": "src/index.js",
"scripts": {
"start": "webpack serve --config __tooling__/webpack/webpack.dev.js --progress",
"build": "npm test && webpack --config __tooling__/webpack/webpack.prod.js",
"build-dev": "DEV_BUILD=1 webpack --config __tooling__/webpack/webpack.dev.js --progress",
"test": "jest --colors --no-watchman --passWithNoTests",
"release:major": "npm version major",
"release:minor": "npm version minor",
"release:hotfix": "npm version patch"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Infomaker/NPWriterDevKit/issues"
},
"dependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@infomaker/types-substance": "^1.3.0",
"@infomaker/types-writer": "^8.0.0-beta.4",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"detect-port": "^1.3.0",
"eslint": "^7.8.1",
"eslint-webpack-plugin": "^2.5.2",
"inquirer": "^7.3.0",
"lodash.template": "^4.5.0",
"mini-css-extract-plugin": "^2.5.3",
"sass": "^1.49.0",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"typescript": "^4.2.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpack-merge": "^5.7.3"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"jest": "^26.4.2"
}
}