-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"name": "icon-arc",
"version": "1.0.0",
"description": "React component to arrange icons on an arc.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/neohed/icon-arc"
},
"scripts": {
"demo": "node server --env=demo --mode=development",
"test": "jest",
"dist": "webpack --env=dist --mode=production"
},
"jest": {
"verbose": true,
"testMatch": [
"**/test/**/*.test.js"
]
},
"author": "neohed",
"license": "ISC",
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3"
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-react": "^7.18.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"minimist": "^1.2.0",
"react-test-renderer": "^16.12.0",
"redux-logger": "^3.0.6",
"style-loader": "^1.1.2",
"url-loader": "^2.3.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"keywords": [
"javascript",
"geometry",
"react",
"ui"
]
}