-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.88 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
{
"name": "app-react",
"description": "Put some description",
"license": "MIT",
"version": "0.0.1",
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "craco test",
"test:e2e:cypress": "cypress run",
"test:e2e": "start-server-and-test start http-get://localhost:3000 test:e2e:cypress",
"lint": "yarn lint:scripts && yarn lint:styles",
"lint:scripts": "tslint \"./src/**/*.{ts,tsx}\" --format stylish",
"lint:styles": "stylelint \"./src/**/*.scss\"",
"update": "create-react-app-updater"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"dependencies": {
"antd": "^3.23.6",
"bootstrap": "^4.3.1",
"i18next": "^17.0.8",
"inversify-hooks": "^1.3.2",
"node-sass": "^4.12.0",
"normalize-scss": "^7.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hookstore": "^1.2.3",
"react-i18next": "^10.11.5",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"@craco/craco": "^5.2.4",
"@types/jest": "24.0.16",
"@types/node": "12.6.9",
"@types/react": "16.8.24",
"@types/react-css-modules": "^4.6.2",
"@types/react-dom": "16.8.5",
"@types/react-router-dom": "^4.3.4",
"babel-plugin-react-css-modules": "^5.2.6",
"craco-sass-resources-loader": "^1.1.0",
"create-react-app-updater": "^0.7.13",
"cypress": "^3.4.1",
"husky": "^3.0.2",
"postcss-nested": "^4.1.2",
"postcss-scss": "^2.0.0",
"react-scripts": "3.0.1",
"start-server-and-test": "^1.9.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-scss": "^3.9.3",
"tslint": "^5.18.0",
"tslint-react": "^4.0.0",
"typescript": "3.5.3"
},
"repository": "https://github.com/BinaryArtists/react-proj.git",
"author": "fallenink"
}