-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 2.18 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
{
"name": "nwayo",
"private": true,
"scripts": {
"fix": "npm run fix:eslint; npm run fix:stylelint; npm run fix:prettier",
"fix:eslint": "./node_modules/.bin/eslint --fix .",
"fix:stylelint": "./node_modules/.bin/stylelint --fix \"**/*.scss\"",
"fix:prettier": "./node_modules/.bin/prettier --write .",
"test": "npm run test:prettier && npm run test:eslint && npm run test:stylelint",
"test:prettier": "./node_modules/.bin/prettier --check .",
"test:eslint": "./node_modules/.bin/eslint --report-unused-disable-directives .",
"test:stylelint": "./node_modules/.bin/stylelint --report-descriptionless-disables --report-invalid-scope-disables --report-needless-disables \"**/*.scss\"",
"postinstall": "node manager.js --task=postinstall",
"outdated": "node manager.js --task=outdated",
"build": "node manager.js --task=build",
"deploy": "node manager.js --task=deploy",
"docker:start": "docker-compose up -d",
"docker:stop": "docker-compose down && docker image rm nwayo_node-latest nwayo_node-16 nwayo_node-14",
"docker:connect": "docker exec -it nwayo-node-latest /bin/bash",
"docker:connect:16": "docker exec -it nwayo-node-16 /bin/bash",
"docker:connect:14": "docker exec -it nwayo-node-14 /bin/bash"
},
"devDependencies": {
"@absolunet/eslint-config-node": "3.2.2",
"@absolunet/eslint-config-nwayo": "3.2.2",
"@absolunet/eslint-config-react": "3.2.2",
"@absolunet/fsp": "1.7.0",
"@absolunet/manager": "1.1.0",
"@absolunet/prettier-config-core": "1.0.1",
"@absolunet/stylelint-config-scss": "3.1.1",
"@babel/core": "7.18.6",
"@babel/eslint-parser": "7.18.2",
"@babel/preset-react": "7.18.6",
"eslint": "8.19.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-ordered-imports": "0.6.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unicorn": "43.0.0",
"lerna": "5.1.8",
"postcss-scss": "4.0.4",
"prettier": "2.7.1",
"stylelint": "14.9.1",
"stylelint-declaration-strict-value": "1.8.0",
"stylelint-order": "5.0.0",
"stylelint-scss": "4.3.0"
}
}