-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1.15 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
{
"name": "sandstorm-cookiepunch",
"version": "4.5.0",
"description": "Sandstorm CookiePunch",
"author": "Sandstorm",
"browserslist": "> 0.25%, not dead",
"scripts": {
"build": "yarn run build:translations && yarn run build:js && yarn run build:copyklarocss",
"build:translations": "node Resources/Private/KlaroTranslations/build.js",
"build:js": "webpack --config webpack.config.js --mode=production",
"build:copyklarocss": "rm Resources/Private/KlaroCss/* && cp node_modules/klaro/dist/*.css Resources/Private/KlaroCss",
"watch": "webpack --watch --mode=development",
"prettier:check": "yarn prettier --check .",
"prettier:fix": "yarn prettier --write ."
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@prettier/plugin-php": "^0.14.3",
"ajv": "^8.5.0",
"browserlist": "^1.0.1",
"handlebars": "^4.7.6",
"husky": "^4.2.5",
"js-yaml": "^4.1.0",
"prettier": "^2.0.5",
"typescript": "^4.0.2",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"klaro": "^0.7.21",
"ts-loader": "^9.1.2"
}
}