-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.33 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
{
"name": "nodexe",
"version": "0.0.2-alpha",
"license": "MIT",
"description": "Create platform-specific binary from node.js modules",
"author": "Morteza Jamali <[email protected]> (https://moraj.ir)",
"scripts": {
"preinstall": "npm config set '@morajlab:registry' https://npm.pkg.github.com",
"test": "mjw test",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:css": "mjw lint --type style",
"prepare": "mjw hooks install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"private": true,
"dependencies": {
"@mantine/core": "^3.4.3",
"@mantine/dropzone": "^3.4.3",
"@mantine/hooks": "^3.4.3",
"@mantine/next": "^3.4.3",
"@morajlab/npm.react.components.bare": "0.0.1-alpha",
"@morajlab/npm.react.styles.common": "0.0.1-alpha",
"i18next": "^21.6.4",
"next": "12.0.7",
"next-transpile-modules": "^9.0.0",
"pkg": "^5.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "^2.0.9",
"react-i18next": "^11.15.3"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@mantine/eslint-config": "^3.4.3",
"@morajlab/npm.config.typescript": "0.0.1-alpha",
"@morajlab/npm.react.types.common": "0.0.1-alpha",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-interactions": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.5.0-alpha.6",
"@storybook/react": "^6.4.9",
"@types/node": "17.0.6",
"@types/react": "17.0.38",
"babel-loader": "^8.2.3",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"eslint-plugin-storybook": "^0.5.5",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.5.4",
"webpack": "^5.65.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morajlab/nodexe.git"
},
"keywords": [
"node",
"exe",
"binary",
"executable",
"node-js",
"javascript",
"morajlab"
],
"bugs": {
"url": "https://github.com/morajlab/nodexe/issues"
},
"homepage": "https://github.com/morajlab/nodexe#readme",
"lint-staged": {
"**/*": "mjw format",
"**/*.css": "npm run lint:css"
}
}