forked from phoboslab/Impact
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.77 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
{
"name": "ympact",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:iamyellow/Impact.git",
"author": "jordi domenech <jordi@iamyellow.net>",
"license": "MIT",
"scripts": {
"dev": "export NODE_ENV=development && webpack serve",
"weltmeister": "ts-node-dev lib/react/Weltmeister/cli/index.ts",
"build": "export NODE_ENV=production && rimraf dist && webpack"
},
"bin": {
"weltmeister": "./dist/cli.js"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/template": "^7.16.0",
"@types/babel__core": "^7.1.16",
"@types/body-parser": "^1.19.1",
"@types/glob": "^7.2.0",
"@types/mustache": "^4.1.2",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/webpack-dev-server": "^4.3.1",
"@types/webpack-env": "^1.16.2",
"babel-loader": "^8.2.2",
"body-parser": "^1.19.0",
"css-loader": "^6.2.0",
"glob": "^7.2.0",
"html-webpack-plugin": "^5.3.2",
"mustache": "^4.2.0",
"rimraf": "^3.0.2",
"style-loader": "^3.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.1"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}