-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "nu-poc",
"version": "1.0.0",
"description": "",
"main": "./src/App.js",
"jest": {
"rootDir": "packages",
"moduleNameMapper": {
"^mini-react$": "<rootDir>/mini-react/index.js",
"^mini-react-dom$": "<rootDir>/mini-react-dom/index.js",
"^mini-react-reconciler$": "<rootDir>/mini-react-reconciler/index.js",
"^shared$": "<rootDir>/shared/index.js",
"^mock$": "<rootDir>/shared/mock.js"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"scripts": {
"start": "npm run tests && rollup -c -w",
"tests": "jest",
"lint": "npx eslint packages/**/**.js src/**/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alan-oliv/nu-poc.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alan-oliv/nu-poc/issues"
},
"homepage": "https://github.com/alan-oliv/nu-poc#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0",
"rollup": "^1.15.5",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-eslint": "^6.0.0",
"rollup-plugin-force-binding": "^1.0.6",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-livereload": "^1.0.1",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-serve": "^1.0.1"
}
}