-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.2 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "dace",
"version": "3.6.0",
"description": "A minimalistic universal (isomorphic) react framework for building web apps",
"main": "dist/index.js",
"repository": "git@github.com:dacejs/dace.git",
"homepage": "https://dacejs.com",
"scripts": {
"build": "rm -rf dist prd && NODE_ENV=local babel src -d dist --presets=dace",
"build:watch": "npm run build -- --watch",
"postrelease": "git push && git push origin --tags",
"prepare": "npm run build",
"release": "standard-version && npm publish",
"release:major": "standard-version --release-as major && npm publish",
"release:minor": "standard-version --release-as minor && npm publish",
"release:patch": "standard-version --release-as patch && npm publish",
"release:alpha": "standard-version --prerelease alpha && npm publish --tag=next",
"dist-tag": "npm dist-tag add dace@1.6.0 latest && npm dist-tag add dace@2.0.0-alpha.4 next",
"release:major:alpha": "standard-version --release-as major --prerelease alpha && npm publish",
"test": "npm run lint && node test/index.js",
"test:debug": "DEBUG=true node test/index.js",
"pretest": "npm run build",
"lint": "eslint \"test/cases/*.js\" \"src/**/*.js\" \"examples/**/*.js\"",
"lint:fix": "eslint --fix --quiet \"test/cases/*.js\" \"src/**/*.js\" \"examples/**/*.js\""
},
"bin": {
"dace": "./dist/bin/dace.js"
},
"keywords": [
"universal",
"isomorphic",
"webpack",
"react",
"redux",
"server-side-rendering",
"express",
"code-splitting"
],
"files": [
"dist",
".eslintrc.js"
],
"author": "",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@loadable/babel-plugin": "^5.12.0",
"@loadable/component": "^5.12.0",
"@loadable/server": "^5.12.0",
"@loadable/webpack-plugin": "^5.12.0",
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"babel-preset-dace": "^2.2.1",
"body-parser": "^1.19.0",
"chalk": "^2.4.1",
"clean-webpack-plugin": "^3.0.0",
"commander": "^2.20.3",
"cookie-parser": "^1.4.5",
"css-loader": "^3.5.3",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-config-qunar": "^5.2.0",
"eslint-loader": "^2.2.1",
"file-loader": "^4.3.0",
"import-fresh": "^3.2.1",
"mini-css-extract-plugin": "^0.7.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "^6.0.1",
"prop-types": "^15.7.2",
"qs": "^6.9.4",
"react-dev-utils": "^9.1.0",
"react-helmet": "^6.0.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.1.2",
"redbox-react": "^1.6.0",
"start-server-webpack-plugin": "2.2.5",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-dace": "^1.0.0",
"url-loader": "^2.3.0",
"webpack": "^4.43.0",
"webpack-dev-server-speedy": "^3.1.1",
"webpack-node-externals": "^1.7.2",
"webpack-visualizer-plugin": "^0.1.11",
"webpackbar": "^3.2.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"mocha": "^6.2.3",
"ps-tree": "^1.2.0",
"shelljs": "^0.8.4",
"should": "^13.2.3"
},
"engines": {
"node": ">= 8.9"
}
}