-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
119 lines (119 loc) · 4.05 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
{
"author": "Sean McQuay",
"bugs": {
"url": "https://github.com/srm985/axure-redline-tool/issues"
},
"dependencies": {
"@babel/runtime": "^7.4.2",
"jquery": "^3.3.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"store": "^2.0.12"
},
"description": "An interactive redline tool plugin for Axure remotely-hosted projects.",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"autoprefixer": "^10.2.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.6.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2017-object-entries": "0.0.5",
"browser-sync": "^2.26.3",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"html-webpack-plugin": "^5.0.0-beta.6",
"husky": "^4.3.0",
"inquirer": "^7.3.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.0",
"node-sass": "^5.0.0",
"onchange": "^7.1.0",
"postcss-loader": "^4.2.0",
"regenerator-runtime": "^0.13.2",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"stylelint": "^13.9.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"svg-inline-loader": "^0.8.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.2.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"homepage": "https://github.com/srm985/axure-redline-tool#readme",
"husky": {
"hooks": {
"pre-commit": "cross-env FORCE_COLOR=true lint-staged && npm run build"
}
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"verbose": true
},
"keywords": [
"axure",
"javascript",
"jquery",
"css",
"wireframe",
"mockup",
"protoype",
"prototyping",
"plugin",
"spec",
"design-specs",
"redline"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix --ignore-pattern '/dist/*' --ignore-pattern '/web/*'"
],
"*.scss": [
"stylelint --syntax scss --color --allow-empty-input --fix"
]
},
"name": "axure-redline-tool",
"repository": {
"type": "git",
"url": "git+https://github.com/srm985/axure-redline-tool.git"
},
"scripts": {
"build": "concurrently -r \"npm:lint --silent\" \"npm:test\" && webpack",
"build:watch": "npm run config:develop && npm run lint && concurrently -r \"webpack\" \"npm:watch --silent\"",
"config:develop": "cross-env-shell NODE_ENV=development INJECTED=false",
"config:develop:inject": "cross-env-shell NODE_ENV=development INJECTED=true",
"develop": "cross-env-shell NODE_ENV=development webpack-dev-server --open --config ./webpack.config.js --mode=development --port 3000",
"develop:inject": "npm run config:develop:inject && node ./scripts/serveInject.js",
"lint": "concurrently -r \"npm:lint:js --silent\" \"npm:lint:scss --silent\"",
"lint:fix": "concurrently -r \"eslint ./*.js src/**/*.js --fix\" \"stylelint src/**/*.scss --syntax scss --color --allow-empty-input --fix\"",
"lint:js": "eslint ./*.js src/**/*.js",
"lint:scss": "stylelint src/**/*.scss --syntax scss --color --allow-empty-input",
"start": "npm run develop:inject",
"test": "jest --passWithNoTests",
"watch": "concurrently -r \"npm:watch:js --silent\" \"npm:watch:scss --silent\"",
"watch:js": "onchange --await-write-finish 300 \"src/**/*.js\" \"*.js\" \"scripts/*.js\" -- npm run lint:js --silent",
"watch:scss": "onchange --await-write-finish 300 \"src/**/*.scss\" -- npm run lint:scss --silent"
},
"version": "3.1.1"
}