-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 2.45 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
{
"name": "hibiki",
"version": "0.3.4",
"description": "Hibiki HTML",
"main": "dist/hibiki.js",
"repository": "https://github.com/sawka/hibiki",
"author": "Michael Sawka <[email protected]>",
"license": "MPL-2.0",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.0",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/classnames": "2.3.1",
"@types/node": "^16",
"@types/react": "^17.0.34",
"@types/uuid": "^8.3.1",
"babel-loader": "^8.2.3",
"babel-plugin-jsx-control-statements": "^4.1.1",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.5.1",
"http-server": "^14.0.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^2.4.4",
"style-loader": "^3.3.1",
"typescript": "^4.4.4",
"webpack": "^5.62.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"autobind-decorator": "^2.4.0",
"camelcase": "^6.2.0",
"classnames": "2.3.1",
"dayjs": "^1.10.7",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"mobx": "5.15.7",
"mobx-react": "6.3.1",
"moo": "^0.5.1",
"nearley": "^2.20.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sprintf-js": "^1.1.2",
"tsx-control-statements": "^4.1.1",
"uuid": "^8.3.2"
},
"scripts": {
"devserver": "webpack-dev-server --config webpack.dev.js --host 0.0.0.0",
"webpack-watch": "webpack --watch --config webpack.dev.js",
"buildprod": "webpack --config webpack.prod.js",
"typecheck": "tsc --jsx preserve --noEmit --esModuleInterop --target ES5 --experimentalDecorators --downlevelIteration src/hibiki.ts src/module-types/*.ts",
"typecheck-noany": "tsc --jsx preserve --noEmit --esModuleInterop --target ES5 --noImplicitAny --experimentalDecorators --downlevelIteration src/hibiki.ts src/module-types/*.ts",
"expr-grammar": "nearleyc src/hibiki-grammar.ne -o src/hibiki-grammar.js",
"playground-css": "lessc ./playground/playground.less ./playground/playground.css",
"playground-server": "http-server ./playground -p 5002",
"test-css": "lessc ./static/test.less ./static/test.css"
}
}