forked from digitalnsw/nsw-design-system-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.66 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
{
"name": "nsw-ds-react",
"version": "1.0.1",
"description": "Reusable React Components from the NSW Design System",
"author": "digitalnsw",
"license": "MIT",
"repository": "https://github.com/digitalnsw/nsw-design-system-react",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm install && npm run build",
"deploy-storybook": "build-storybook && gh-pages -d storybook-static",
"storybook": "start-storybook -p 6006 --no-manager-cache",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.4.0",
"@storybook/addon-essentials": "^6.4.0",
"@storybook/addon-links": "^6.4.0",
"@storybook/addons": "^6.4.0",
"@storybook/react": "^6.4.0",
"@storybook/theming": "^6.4.0",
"@whitespace/storybook-addon-html": "^5.0.0",
"cross-env": "^7.0.3",
"gh-pages": "^3.2.3",
"microbundle-crl": "^0.13.11",
"npm-run-all": "^4.1.5",
"nsw-design-system": "^3.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-id-generator": "^3.0.2",
"react-scripts": "^4.0.3"
},
"files": [
"dist"
]
}