-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "in-browser-transpilation",
"version": "0.1.0",
"description": "Transpiling JSX and modules in-browser.",
"main": "src/main.js",
"scripts": {
"build": "rollup -c rollup/rollup.config.js",
"lint": "eslint .",
"test": "jest -c jest/jest.config.js"
},
"author": "JeremyRH",
"repository": "https://github.com/JeremyRH/in-browser-transpilation",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.42",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-external-helpers": "^7.0.0-beta.42",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.42",
"@babel/plugin-transform-react-jsx": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-stage-3": "^7.0.0-beta.42",
"@babel/standalone": "^7.0.0-beta.42",
"autoprefixer": "^8.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.0-alpha.1",
"babel-plugin-dynamic-import-node": "^1.2.0",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"postcss-clean": "^1.1.0",
"react-test-renderer": "^16.2.0",
"rollup": "^0.57.1",
"rollup-plugin-alias-module-specifiers": "^0.1.7",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-postcss": "^1.4.0",
"systemjs": "^0.21.0",
"uglify-js": "^3.3.16"
},
"eslintConfig": {
"extends": "./eslint/eslint.config.js"
},
"eslintIgnore": [
"dist/"
]
}