forked from ericdrowell/PowerGrid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "power-grid",
"version": "0.1.0",
"description": "An insanely fast React tree grid",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Eric Rowell",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.4.4",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^4.4.1",
"typescript": "^4.0.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"scripts": {
"start": "npm run clean && webpack-dev-server --open",
"build": "tsc && tsc --outDir ./dist/cjs --module CommonJS",
"build:demo": "npm run clean && webpack",
"build:demo:watch": "npm run build:demo -- --watch",
"clean": "rm -rf ./public ./dist"
}
}