-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.01 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
{
"name": "ironic",
"version": "1.0.0",
"description": "vDOM UI libray",
"main": "./dist/ironic.min.js",
"scripts": {
"build": "webpack --config ./webpack.lib.config.js",
"build-demo": "webpack --config ./webpack.demo.config.js",
"dev": "webpack --watch --config ./webpack.lib.config.js --mode=development",
"dev-demo": "webpack-dev-server --config ./webpack.demo.config.js --mode=development",
"test": "jest",
"test-coverage": "jest --coverage",
"lint-css": "stylelint '**/*.css'"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mum-never-proud/ironic.git"
},
"keywords": [
"react",
"virtual",
"dom",
"framework"
],
"author": "mum-never-proud",
"license": "ISC",
"bugs": {
"url": "https://github.com/mum-never-proud/ironic/issues"
},
"homepage": "https://github.com/mum-never-proud/ironic#readme",
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.8.7",
"@babel/preset-env": "7.8.7",
"@babel/preset-react": "7.10.4",
"@testing-library/jest-dom": "5.1.1",
"babel-jest": "26.3.0",
"babel-loader": "8.0.6",
"css-loader": "4.2.0",
"eslint": "7.6.0",
"eslint-config-airbnb": "18.2.0",
"eslint-import-resolver-webpack": "0.12.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.5",
"eslint-plugin-react-hooks": "4.0.8",
"jest": "25.1.0",
"style-loader": "1.2.1",
"stylelint": "13.6.1",
"stylelint-config-standard": "20.0.0",
"svg-url-loader": "6.0.0",
"webpack": "4.42.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"bootstrap": "4.6.0",
"path": "0.12.7",
"redux": "https://github.com/mum-never-proud/redux.git",
"uniqid": "5.2.0",
"unified-demo-theme": "https://github.com/mum-never-proud/unified-demo-theme.git"
}
}