forked from adidas/htmplar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.84 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": "htmplar",
"description": "Developer friendly email development with React",
"version": "0.4.1",
"repository": {
"type": "git",
"url": "git+https://github.com/adidas/htmplar.git"
},
"author": "Bilal Çınarlı <[email protected]>",
"contributers": [
"Berkan Dirim <[email protected]>"
],
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "babel src/templating --out-dir lib",
"lint": "eslint index.js src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"watch": "nodemon --watch src --exec 'npm run lint && npm run build'",
"publish": "npm publish --access public"
},
"preferGlobal": true,
"bin": {
"htmplar": "src/cli/index.js"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/register": "^7.23.7",
"eslint": "^8.57.0",
"eslint-config-adidas-babel": "^2.0.0",
"eslint-config-adidas-env": "^2.1.0",
"eslint-config-adidas-es8": "^2.0.0",
"eslint-config-adidas-react": "^2.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"nodemon": "^3.1.0",
"prettier": "3.2.5"
},
"dependencies": {
"chalk": "^5.3.0",
"classnames": "^2.5.1",
"clui": "^0.3.6",
"configstore": "^6.0.0",
"express": "^4.19.2",
"figlet": "^1.7.0",
"inline-css": "^4.0.2",
"minimist": "^1.2.8",
"module": "^1.2.5",
"pretty": "^2.0.0",
"prop-types": "^15.8.1",
"rc": "^1.2.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.8",
"vm": "^0.1.0"
}
}