This repository was archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.56 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.56 KB
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
{
"name": "atomix-ui",
"version": "0.0.0",
"private": true,
"description": "Atomix UI",
"scripts": {
"test": "npm run test:lint",
"test:lint": "eslint packages",
"dev": "start-storybook -p 9900 -c .storybook",
"build": "lerna run build",
"build:dev": "NODE_ENV=development npm run build",
"build:prod": "NODE_ENV=production npm run build",
"bs": "lerna bootstrap",
"postinstall": "npm run bs",
"clean": "lerna run clean --scope \"@atomix-ui/*\"",
"prepublish": "npm run build",
"publish": "lerna publish --scope \"@atomix-ui/*\"",
"create": "node scripts/create.component",
"deploy-storybook": "NODE_ENV=production storybook-to-ghpages",
"build-storybook": "NODE_ENV=production build-storybook -s public",
"precommit": "npm run test:lint",
"prepush": "npm test",
"-commitmsg": "commitlint -e $GIT_PARAMS",
"commitmsg": "cat .git/COMMIT_EDITMSG | commitlint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomixinteractions/ui.git"
},
"author": "Sergey Sova <mail@sergeysova.com> (https://sergeysova.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomixinteractions/ui/issues"
},
"homepage": "https://atomix.react.design",
"devDependencies": {
"@atomix/eslint-config-react": "^6.1.1",
"@commitlint/cli": "^6.1.0",
"@storybook/addon-actions": "^3.3.12",
"@storybook/react": "^3.3.11",
"@storybook/storybook-deployer": "^2.2.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-styled-components": "^1.5.0",
"babel-plugin-styled-name": "^1.0.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.1.0",
"change-case": "^3.0.1",
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.5",
"cz-customizable": "^5.2.0",
"eslint": "^4.16.0",
"glob": "^7.1.2",
"husky": "^0.14.3",
"inquirer": "^3.3.0",
"jsx-control-statements": "^3.2.6",
"lerna": "^2.8.0",
"mkdirp": "^0.5.1",
"pify": "^3.0.0",
"progress": "^2.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"semantic-release": "^8.0.0",
"semver": "^5.5.0",
"supports-color": "^5.1.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"dependencies": {
"debug": "^3.0.1",
"styled-components": "^3.1.6"
}
}