-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
84 lines (84 loc) · 2.4 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
{
"name": "react-nitro-2",
"version": "0.0.1",
"description": "Microfrontend framework with React",
"main": "index.js",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "node server/server",
"gen": "plop",
"clean": "lerna clean --yes && rm -rf ./node_modules",
"storybook": "start-storybook -p 9002 -c .storybook",
"install:apps": "lerna bootstrap",
"build:apps": "lerna run --parallel build",
"start-apps": "lerna run --parallel start",
"watch-apps": "lerna run --parallel watch",
"start:dev": "nodemon server/server",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore",
"lint:eslint:fix": "eslint --ignore-path .gitignore --fix",
"lint:tslint": "tslint --project ./tsconfig.json --config ./tslint.json",
"lint:js": "npm run lint:eslint -- . ",
"lint:js:fix": "npm run lint:eslint:fix -- . ",
"lint:staged": "lint-staged"
},
"lint-staged": {
"*.js": [
"npm run lint:js"
],
"*.ts{,x}": [
"npm run lint:tslint"
]
},
"pre-commit": "lint:staged",
"author": "",
"license": "MIT",
"devDependencies": {
"@storybook/react": "^4.1.11",
"all-contributors-cli": "^6.1.1",
"babel-eslint": "^8.2.6",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"lerna": "^3.13.1",
"lint-staged": "^8.1.3",
"node-tailor": "^3.9.2",
"nodemon": "^1.18.9",
"plop": "^2.2.0",
"pre-commit": "^1.2.2",
"prettier": "^1.16.4",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.3.1",
"webpack": "^4.28.2"
},
"dependencies": {
"antd": "^3.13.2",
"compression": "^1.7.3",
"config": "^3.0.1",
"cookie-parser": "^1.4.3",
"ejs": "^2.6.1",
"entities": "^1.1.2",
"express": "^4.16.4",
"fs": "0.0.1-security",
"helmet": "^3.16.0",
"html-minifier": "^3.5.21",
"jsdom": "^13.1.0",
"node-gyp": "^3.8.0",
"react-dom": "^16.7.0",
"request-promise": "^4.2.2",
"require-from-string": "^2.0.2",
"requirejs": "^2.3.6",
"turbolinks": "^5.2.0"
}
}