-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
133 lines (133 loc) · 4 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@trafilea/nx-shopify",
"version": "0.0.0",
"description": "A Nx plugin for developing performance-first Shopify themes",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"commit": "cz",
"check-commit": "node ./tools/scripts/commit-lint.js",
"contributors:add": "npx all-contributors-cli add",
"contributors:generate": "npx all-contributors-cli generate",
"workspace-generator": "nx workspace-generator"
},
"private": true,
"dependencies": {
"@nrwl/devkit": "12.0.8",
"@nrwl/workspace": "12.0.8",
"@shopify/themekit": "^1.1.7",
"browser-sync": "^2.26.14",
"camelcase-keys": "^6.2.2",
"chalk": "^4.1.0",
"circular-dependency-plugin": "^5.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"cors": "^2.8.5",
"css-loader": "^5.1.3",
"css-minimizer-webpack-plugin": "^1.3.0",
"express": "^4.17.1",
"figures": "^3.2.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.1.1",
"html-webpack-plugin": "^4.5.0",
"http-proxy-middleware": "^1.2.0",
"https": "^1.0.0",
"ip": "^1.1.5",
"js-yaml": "^4.0.0",
"license-webpack-plugin": "^2.3.15",
"mini-css-extract-plugin": "^1.3.9",
"ora": "^5.3.0",
"portscanner": "^2.2.0",
"postcss": "^8.2.8",
"postcss-loader": "^4.1.0",
"rxjs-for-await": "^0.0.2",
"sass": "^1.32.8",
"sass-loader": "^10.0.3",
"style-loader": "^2.0.0",
"tapable": "^2.0.0",
"ts-loader": "^8.0.18",
"tsconfig-paths-webpack-plugin": "^3.5.0",
"typescript": "4.1.4",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^5.7.3"
},
"devDependencies": {
"@nrwl/cli": "12.0.8",
"@nrwl/eslint-plugin-nx": "12.0.8",
"@nrwl/jest": "12.0.8",
"@nrwl/nx-cloud": "11.2.0",
"@nrwl/nx-plugin": "12.0.8",
"@nrwl/tao": "12.0.8",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/browser-sync": "^2.26.1",
"@types/camelcase-keys": "^5.1.1",
"@types/express": "^4.17.11",
"@types/ip": "^1.1.0",
"@types/jest": "26.0.8",
"@types/js-yaml": "^4.0.0",
"@types/node": "14.14.33",
"@types/terser-webpack-plugin": "^5.0.2",
"@types/webpack": "^4.41.26",
"@types/webpack-dev-middleware": "^4.1.0",
"@types/webpack-hot-middleware": "^2.25.3",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"all-contributors-cli": "^6.19.0",
"commitizen": "^4.2.1",
"cz-customizable": "^6.3.0",
"dotenv": "8.2.0",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"husky": "^4.3.0",
"jest": "26.2.2",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"semantic-release": "^17.3.9",
"semantic-release-slack-bot": "^2.1.0",
"ts-jest": "26.4.0",
"ts-node": "~9.1.1",
"tslib": "^2.0.0",
"tslint": "~6.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn check-commit && pretty-quick --check"
}
},
"lint-staged": {
"*.{js,json,css,scss,md,ts,html}": [
"yarn format --uncommitted"
]
}
}