-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
99 lines (99 loc) · 3.04 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@marp-team/marp-web",
"version": "0.0.0",
"description": "A web interface of Marp",
"homepage": "https://web.marp.app/",
"repository": "https://github.com/marp-team/marp-web",
"author": {
"name": "Marp team",
"url": "https://github.com/marp-team"
},
"contributors": [
{
"name": "Yuki Hattori",
"url": "https://github.com/yhatt"
}
],
"license": "MIT",
"private": true,
"browserslist": [
"last 2 version",
"not dead",
"not ie <= 11"
],
"scripts": {
"build": "yarn --silent clean && cpx \"./public/**/*\" ./dist && webpack --env.production",
"check-ts": "tsc",
"clean": "rimraf dist",
"format": "prettier \"**/*.{css,js,jsx,json,html,md,scss,ts,tsx,yaml,yml}\"",
"format:check": "yarn --silent format -c",
"format:write": "yarn --silent format --write",
"lint:css": "stylelint \"{src,style}/**/*.{css,scss}\"",
"lint:ts": "tslint \"{src,test}/**/*.{ts,tsx}\"",
"preversion": "npm-run-all --npm-path yarn --parallel check-ts format:check lint:* test:coverage",
"start": "yarn --silent watch",
"test": "jest",
"test:coverage": "jest --coverage",
"version": "node version.js && git add -A CHANGELOG.md",
"watch": "webpack-dev-server"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.18",
"@types/jest-plugin-context": "^2.9.2",
"@types/node": "^12.7.2",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"codecov": "^3.6.5",
"cpx": "^1.5.0",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"file-loader": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-junit": "^7.0.0",
"jest-plugin-context": "^2.9.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"preact-render-spy": "^1.3.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"sass-loader": "^7.3.1",
"style-loader": "^1.0.0",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.9.4",
"ts-jest": "^24.0.2",
"tslib": "^1.10.0",
"tslint": "^5.19.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3",
"url-loader": "^2.1.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"workbox-webpack-plugin": "^4.3.1",
"worker-loader": "^2.0.0"
},
"dependencies": {
"@marp-team/marp-core": "^0.12.1",
"detect-browser": "^4.6.0",
"incremental-dom": "^0.6.0",
"markdown-it-incremental-dom": "^2.1.0",
"preact": "^8.5.2",
"preact-context": "^1.1.3",
"unissist": "^1.4.0",
"unistore": "^3.4.1",
"uuid": "^3.3.3"
}
}