-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.33 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
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
{
"name": "altered-breakpoint",
"version": "0.8.0",
"description": "Javascript development environment",
"type": "module",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"exports": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"types": "./dist/index.d.ts",
"style": "./dist/index.css",
"sideEffects": false,
"files": [
"/dist"
],
"repository": "github:pridyok/altered-breakpoint",
"scripts": {
"start": "cross-env NODE_ENV=development node build/server.js",
"lint": "eslint src",
"lint:watch": "npm run lint -- --watch",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"clean-dist": "rimraf ./dist && mkdir dist",
"serve": "cross-env NODE_ENV=production node build/server.js",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "start-server-and-test serve http-get://localhost:8080 cy:run",
"tests": "start-server-and-test serve http-get://localhost:8080 cy:open",
"prebuild": "run-p clean-dist lint",
"build": "cross-env NODE_ENV=production node build/build.js",
"postbuild": "npm run serve",
"compile": "cross-env NODE_ENV=production node build/build.js"
},
"keywords": [],
"author": "Aaron Pridy",
"license": "MIT",
"dependencies": {
"core-js": "^3.11.1",
"debounce": "^1.2.1"
},
"optionalDependencies": {
"breakpoint-slicer": "^3.0.0-beta.1",
"sass-mq": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.14.0",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"@types/cypress": "^1.1.3",
"@types/debounce": "^1.2.0",
"@types/eslint": "^7.2.10",
"@types/jsdom": "^16.2.10",
"@types/node": "^15.0.1",
"@types/sass": "^1.16.0",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.0.2",
"babel-register": "^6.26.0",
"bufferutil": "^4.0.3",
"canvas": "^2.7.0",
"chalk": "^4.1.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"css-minimizer-webpack-plugin": "^2.0.0",
"cypress": "^7.2.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"esm": "^3.2.25",
"fibers": "^5.0.0",
"fork-ts-checker-webpack-plugin": "^6.2.5",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"js-yaml": "^4.1.0",
"mini-css-extract-plugin": "^1.6.0",
"npm-run-all": "^4.1.5",
"parallel-webpack": "^2.6.0",
"pluralize": "^8.0.0",
"postcss-loader": "^5.2.0",
"prettier": "^2.2.1",
"pretty-error": "^2.1.2",
"sass": "^1.32.12",
"sass-loader": "^11.0.1",
"source-map-loader": "^2.0.1",
"start-server-and-test": "^1.12.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"utf-8-validate": "^5.0.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.0.0-beta.2",
"webpack-merge": "^5.7.3"
}
}