This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.94 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
{
"name": "demo-ui",
"version": "1.16.0",
"description": "demo網頁中常用的版面元素",
"main": "lib/index.js",
"scripts": {
"start": "npm run dev && node devServer.js",
"compile": "NODE_ENV=development babel src --out-dir lib",
"compile_prod": "NODE_ENV=production babel src --out-dir lib",
"clear": "rm -rf lib;mkdir -p lib",
"dev": "npm run clear && npm run compile",
"build": "npm run clear && npm run compile_prod",
"deploy": "npm run build && npm publish",
"test": "npm run build && NODE_ENV=test mocha",
"test-watch": "npm run build && NODE_ENV=test mocha -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/i3thuan5/demo-ui.git"
},
"keywords": [
"react",
"component-library",
"frontend-components"
],
"author": "i3thuan5",
"license": "MIT",
"bugs": {
"url": "https://github.com/i3thuan5/demo-ui/issues"
},
"homepage": "https://github.com/i3thuan5/demo-ui#readme",
"dependencies": {
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"semantic-ui-css": "^2.2.10"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"css-loader": "^0.23.0",
"enzyme": "^2.8.2",
"express": "^4.14.0",
"file-loader": "^0.11.1",
"jscs": "^3.0.6",
"jsdom": "^10.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.3.0",
"react-addons-test-utils": "^15.5.1",
"react-hot-loader": "^1.3.0",
"react-test-renderer": "^15.5.4",
"sinon": "^2.2.0",
"strict-loader": "^1.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.8",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.0"
}
}