-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.39 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
{
"name": "outliner",
"version": "0.0.1",
"main": "index.js",
"repository": "[email protected]:Yixi/outliner.git",
"author": "Yixi <[email protected]>",
"dependencies": {
"axios": "^0.19.0",
"classnames": "^2.2.6",
"dayjs": "^1.8.18",
"draft-js": "^0.11.3",
"lodash": "^4.17.15",
"mobx": "^5.15.1",
"mobx-react": "^6.1.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"semantic-ui-react": "^0.88.2",
"swr": "^0.1.15",
"uuid": "^3.3.3"
},
"scripts": {
"dev": "yarn start",
"start": "webpack-dev-server --open --config build/webpack.dev.config.js --progress",
"package": "webpack --config build/webpack.prod.config.js",
"build": "yarn package && cp config/config-prod.js dist/config.js",
"deploy:gh-page": "node ./build/gh-pages-deploy.js",
"test": "jest",
"test:coverage": "jest --coverage",
"sonarqube": "sonar-scanner -Dsonar.login=$SONAR_TOKEN",
"coverage:report": "cat ./coverage/lcov.info | COVERALLS_REPO_TOKEN=$COVERALLS_REPO_TOKEN coveralls"
},
"husky": {
"hooks": {
"pre-push": "yarn test"
}
},
"devDependencies": {
"@types/classnames": "^2.2.9",
"@types/draft-js": "^0.10.37",
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.24",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.1.3",
"@types/uuid": "^3.4.6",
"autoprefixer": "^9.7.3",
"clean-webpack-plugin": "^3.0.0",
"coveralls": "^3.0.9",
"css-loader": "^3.4.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.2",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^3.0.0",
"sonarqube-scanner": "^2.5.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.2",
"ts-import-plugin": "^1.6.2",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-react": "^4.1.0",
"typescript": "^3.7.3",
"webpack": "^4.41.4",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}