-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.68 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
{
"name": "foodesg",
"version": "1.0.0",
"description": "foo-design",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build:lib": "tsc",
"build:dist": "NODE_ENV=PRODUCTION webpack",
"format": "prettier --write \"src/**/*.tsx\" \"src/**/*.js\"",
"lint": "eslint -c .eslintrc.js src/**/*.tsx",
"prepare": "npm run format && npm run lint && npm run build:lib && npm run build:dist"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "https://github.com/Phu96/foodesg"
},
"files": [
"dist",
"lib"
],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-proposal-export-namespace-from": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-transform-member-expression-literals": "^7.7.4",
"@babel/plugin-transform-object-assign": "^7.7.4",
"@babel/plugin-transform-property-literals": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/plugin-transform-spread": "^7.7.4",
"@babel/plugin-transform-template-literals": "^7.7.4",
"@babel/plugin-transform-typescript": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@types/jest": "^24.0.25",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.0.6",
"babel-plugin-inline-import-data-uri": "^1.0.1",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"css-loader": "^3.4.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"rucksack-css": "^1.0.2",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2",
"webpackbar": "^4.0.0"
},
"dependencies": {
"@types/classnames": "^2.2.9",
"classnames": "^2.2.6",
"omit.js": "^1.0.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}