-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.81 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.81 KB
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
{
"name": "tuxedo",
"version": "0.0.1",
"engines": {
"node": "14.x"
},
"scripts": {
"start": "",
"scripts": "npx webpack --config webpack.config.js",
"styles": "node-sass app/assets/stylesheets/application.scss public/dist/application.css",
"develop": "concurrently \"npx webpack --config webpack.config.js --watch\" \"npx node-sass app/assets/stylesheets/application.scss public/dist/application.css -w\"",
"build": "npm run scripts && npm run styles && npm run sprite",
"sprite": "npx svg-sprite-generate -d ./public/svg -o ./public/dist/sprite.svg",
"maildev": "npx maildev",
"snapshots": "percy exec -- node snapshots.js"
},
"license": "ISC",
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-async-to-generator": "^7.7.4",
"@babel/plugin-transform-destructuring": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@popperjs/core": "^2.0.6",
"algoliasearch": "^4.1.0",
"awesomplete": "^1.1.1",
"aws-sdk": "^2.573.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.9.0",
"concurrently": "^5.3.0",
"css-loader": "^3.4.0",
"dotenv": "^8.2.0",
"escape-string-regexp": "^1.0.5",
"fuse.js": "^3.4.6",
"hammerjs": "^2.0.8",
"jquery": "^3.4.1",
"lodash.uniq": "^4.5.0",
"node-sass": "^4.13.0",
"query-string": "^6.13.6",
"style-loader": "^1.1.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"devDependencies": {
"@percy/script": "^1.1.0",
"glob": "^7.2.0",
"handlebars": "^4.7.7",
"maildev": "^1.1.0",
"nodemailer": "^6.7.2",
"svg-sprite-generator": "0.0.7",
"throttle-debounce": "^2.1.0"
}
}