-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.54 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
{
"name": "nunu",
"version": "0.1.0",
"description": "Shopify Theme for Nunu",
"main": "index.js",
"repository": "[email protected]:sanctuarycomputer/nunu.git",
"author": "[email protected]",
"license": "MIT",
"private": true,
"scripts": {
"watch": "concurrently \"yarn run watch:js\" \"yarn run watch:theme\"",
"deploy": "yarn run build:js && yarn run deploy:theme",
"watch:js": "NODE_ENV=development webpack --config webpack.config.js --watch",
"build:js": "NODE_ENV=production webpack --config webpack.config.js",
"watch:theme": "cd ./theme && theme watch --env=development --vars=.env",
"deploy:theme": "cd ./theme && theme deploy --env=development --vars=.env"
},
"dependencies": {
"@sanctucompu/basement": "^1.2.0",
"@sentry/browser": "^6.2.1",
"@sentry/tracing": "^6.2.1",
"@splidejs/splide": "^2.4.21",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"nouislider": "^15.5.0",
"typescript": "^4.1.3",
"what-input": "^5.2.10",
"zenscroll": "^4.0.2"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^3.1.3",
"autoprefixer": "^10.2.1",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"mini-css-extract-plugin": "^1.3.4",
"postcss-loader": "^4.1.0",
"sass": "^1.49.7",
"sass-loader": "^10.1.1",
"source-map-loader": "^2.0.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.0.14",
"webpack": "^5.14.0",
"webpack-cli": "^4.3.1"
}
}